34 lines
833 B
Nix
34 lines
833 B
Nix
{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";
|
|
extraGroups = ["networkmanager" "wheel"];
|
|
shell = pkgs.fish;
|
|
};
|
|
home-manager.users.elitherl = import ./home/J0162/elitherl.nix;
|
|
|
|
system.autoUpgrade = {
|
|
enable = false;
|
|
allowReboot = false;
|
|
};
|
|
}
|