35 lines
844 B
Nix
35 lines
844 B
Nix
{ pkgs, ... }:
|
||
{
|
||
imports = [
|
||
./home
|
||
./common.nix
|
||
./hardware/audio.nix
|
||
./locales/en_GB.nix
|
||
./desktop/hyprland.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 = { ... }: {
|
||
imports = [ ./home/collections/work ];
|
||
# Home Manager needs a bit of information about you and the
|
||
# paths it should manage.
|
||
home.username = "elitherl";
|
||
home.homeDirectory = "/home/elitherl";
|
||
home.stateVersion = "22.11";
|
||
};
|
||
|
||
system.autoUpgrade = {
|
||
enable = false;
|
||
allowReboot = false;
|
||
};
|
||
}
|