Evie Litherland-Smith
52ff1c36a3
Move root user home-config into home/default.nix so that it's used by all Removed personal/work specific things from root user
26 lines
539 B
Nix
26 lines
539 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./home
|
|
./common.nix
|
|
./hardware/audio.nix
|
|
./hardware/bluetooth.nix
|
|
./locales/en_GB.nix
|
|
./desktop/hyprland.nix
|
|
];
|
|
|
|
networking.hostName = "J0162"; # Define your hostname.
|
|
|
|
users.users.elitherl = {
|
|
isNormalUser = true;
|
|
description = "Evie Litherland-Smith";
|
|
extraGroups = ["networkmanager" "wheel"];
|
|
shell = pkgs.fish;
|
|
};
|
|
home-manager.users.elitherl = import ./home/J0162/elitherl.nix;
|
|
|
|
system.autoUpgrade = {
|
|
enable = false;
|
|
allowReboot = false;
|
|
};
|
|
}
|