nixos/machines/H0615/default.nix

27 lines
646 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{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";
2023-05-17 17:10:18 +01:00
extraGroups = ["networkmanager" "wheel"];
shell = pkgs.fish;
};
home-manager.users.elitherl = import ./elitherl.nix;
}