29 lines
676 B
Nix
29 lines
676 B
Nix
{ pkgs, ... }:
|
||
{
|
||
imports = [
|
||
./home
|
||
./common.nix
|
||
./locales/en_GB.nix
|
||
./desktop/plasma.nix
|
||
./hardware/audio.nix
|
||
./hardware/bluetooth.nix
|
||
];
|
||
|
||
networking.hostName = "J0162"; # 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.root = import ./home/J0162/root.nix;
|
||
home-manager.users.elitherl = import ./home/J0162/elitherl.nix;
|
||
|
||
system.autoUpgrade = {
|
||
enable = false;
|
||
allowReboot = false;
|
||
};
|
||
}
|