2023-05-17 17:10:18 +01:00
|
|
|
|
{pkgs, ...}: {
|
2023-03-31 13:14:35 +01:00
|
|
|
|
imports = [
|
2023-05-05 15:02:31 +01:00
|
|
|
|
./home
|
2023-03-31 13:14:35 +01:00
|
|
|
|
./common.nix
|
2023-05-16 09:13:59 +01:00
|
|
|
|
./locales/en_GB.nix
|
2023-05-16 19:52:00 +01:00
|
|
|
|
./desktop/plasma.nix
|
2023-04-29 12:36:57 +01:00
|
|
|
|
./hardware/audio.nix
|
|
|
|
|
./hardware/bluetooth.nix
|
2023-03-31 13:14:35 +01:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
networking.hostName = "J0162"; # Define your hostname.
|
|
|
|
|
|
|
|
|
|
# Define a user account. Don't forget to set a password with ‘passwd’.
|
|
|
|
|
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-17 08:41:16 +01:00
|
|
|
|
home-manager.users.root = import ./home/J0162/root.nix;
|
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
|
|
|
|
}
|