2023-05-17 17:10:18 +01:00
|
|
|
{pkgs, ...}: {
|
2023-03-31 13:14:35 +01:00
|
|
|
imports = [
|
|
|
|
./common.nix
|
2023-04-29 12:36:57 +01:00
|
|
|
./hardware/audio.nix
|
|
|
|
./hardware/bluetooth.nix
|
2023-05-31 10:54:57 +01:00
|
|
|
./locales/en_GB.nix
|
2023-06-13 08:01:43 +01:00
|
|
|
./desktop/plasma.nix
|
|
|
|
./services/syncthing/J0162.nix
|
2023-03-31 13:14:35 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
networking.hostName = "J0162"; # Define your hostname.
|
2023-06-13 09:22:47 +01:00
|
|
|
services.xserver.displayManager = {
|
|
|
|
defaultSession = "plasma";
|
|
|
|
autoLogin.user = "elitherl";
|
|
|
|
};
|
2023-06-13 10:05:40 +01:00
|
|
|
environment.etc."ppp/options".text = ''
|
|
|
|
ipcp-accept-remote
|
|
|
|
'';
|
2023-03-31 13:14:35 +01:00
|
|
|
|
|
|
|
users.users.elitherl = {
|
|
|
|
isNormalUser = true;
|
|
|
|
description = "Evie Litherland-Smith";
|
2023-05-17 17:10:18 +01:00
|
|
|
extraGroups = ["networkmanager" "wheel"];
|
2023-03-31 13:14:35 +01:00
|
|
|
shell = pkgs.fish;
|
|
|
|
};
|
2023-05-16 09:13:59 +01:00
|
|
|
home-manager.users.elitherl = import ./home/J0162/elitherl.nix;
|
2023-05-05 15:02:31 +01:00
|
|
|
|
|
|
|
system.autoUpgrade = {
|
|
|
|
enable = false;
|
|
|
|
allowReboot = false;
|
|
|
|
};
|
2023-03-31 13:14:35 +01:00
|
|
|
}
|