nixos/H0615.nix
Evie Litherland-Smith 5a18c254ac Move home-manager config into separate directories
Add platform specific hyprland/hyprpaper/waybar config into platform
specific home-manager files, better integration with nix and no
conflicing links
2023-05-16 09:13:59 +01:00

28 lines
617 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ pkgs, ... }:
{
imports = [
./home
./common.nix
./locales/en_GB.nix
./desktop/hyprland.nix
./hardware/audio.nix
./syncthing/H0615.nix
];
networking.hostName = "H0615"; # Define your hostname.
# Define a user account. Don't forget to set a password with passwd.
users.users.elitherl = {
isNormalUser = true;
description = "Evie Litherland-Smith";
extraGroups = [ "networkmanager" "wheel" ];
shell = pkgs.fish;
};
home-manager.users.elitherl = import ./home/H0615/elitherl.nix;
system.autoUpgrade = {
enable = false;
allowReboot = false;
};
}