27 lines
646 B
Nix
27 lines
646 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../../common.nix
|
|
../../hardware/audio.nix
|
|
../../locales/en_GB.nix
|
|
../../desktop/plasma.nix
|
|
../../services/syncthing/H0615.nix
|
|
];
|
|
|
|
networking.hostName = "H0615"; # Define your hostname.
|
|
services.xserver.displayManager = {
|
|
defaultSession = "plasma";
|
|
autoLogin.user = "elitherl";
|
|
};
|
|
system.autoUpgrade = {
|
|
enable = false;
|
|
allowReboot = false;
|
|
};
|
|
users.users.elitherl = {
|
|
isNormalUser = true;
|
|
description = "Evie Litherland-Smith";
|
|
extraGroups = ["networkmanager" "wheel"];
|
|
shell = pkgs.fish;
|
|
};
|
|
home-manager.users.elitherl = import ./elitherl.nix;
|
|
}
|