nixos/J0162.nix

30 lines
668 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{pkgs, ...}: {
imports = [
./common.nix
./hardware/audio.nix
./hardware/bluetooth.nix
./locales/en_GB.nix
./desktop/plasma.nix
./services/syncthing/J0162.nix
];
networking.hostName = "J0162"; # Define your hostname.
services.xserver.displayManager = {
defaultSession = "plasma";
autoLogin.user = "elitherl";
};
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 ./home/J0162/elitherl.nix;
system.autoUpgrade = {
enable = false;
allowReboot = false;
};
}