nixos/J0162.nix

34 lines
833 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";
};
environment.etc."ppp/options".text = ''
ipcp-accept-remote
'';
services.jupyter.password = "'sha1:005773a53a70:a5c53a779fa0e1498ada0f8fdb48ad1fef1257ff'";
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;
};
}