28 lines
630 B
Nix
28 lines
630 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./home
|
|
./common.nix
|
|
./hardware/audio.nix
|
|
./locales/en_GB.nix
|
|
./desktop/hyprland.nix
|
|
./services/H0615.nix
|
|
];
|
|
|
|
networking.hostName = "H0615"; # Define your hostname.
|
|
|
|
users.users.root.shell = pkgs.zsh;
|
|
users.users.elitherl = {
|
|
isNormalUser = true;
|
|
description = "Evie Litherland-Smith";
|
|
extraGroups = ["networkmanager" "wheel"];
|
|
shell = pkgs.fish;
|
|
};
|
|
home-manager.users.root = import ./home/H0615/root.nix;
|
|
home-manager.users.elitherl = import ./home/H0615/elitherl.nix;
|
|
|
|
system.autoUpgrade = {
|
|
enable = false;
|
|
allowReboot = false;
|
|
};
|
|
}
|