2023-05-17 17:10:18 +01:00
|
|
|
{pkgs, ...}: {
|
2023-03-28 17:14:10 +01:00
|
|
|
imports = [
|
2023-03-29 13:43:02 +01:00
|
|
|
./common.nix
|
2023-05-16 09:13:59 +01:00
|
|
|
./hardware/audio.nix
|
2023-05-31 09:46:34 +01:00
|
|
|
./locales/en_GB.nix
|
|
|
|
./desktop/hyprland.nix
|
2023-06-05 07:42:47 +01:00
|
|
|
./services/syncthing/H0615.nix
|
2023-03-28 17:14:10 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
networking.hostName = "H0615"; # Define your hostname.
|
2023-06-05 09:23:05 +01:00
|
|
|
services.xserver.displayManager.defaultSession = "hyprland";
|
2023-03-28 17:14:10 +01:00
|
|
|
|
|
|
|
users.users.elitherl = {
|
|
|
|
isNormalUser = true;
|
|
|
|
description = "Evie Litherland-Smith";
|
2023-05-17 17:10:18 +01:00
|
|
|
extraGroups = ["networkmanager" "wheel"];
|
2023-03-29 15:38:01 +01:00
|
|
|
shell = pkgs.fish;
|
2023-03-28 17:14:10 +01:00
|
|
|
};
|
2023-05-16 09:13:59 +01:00
|
|
|
home-manager.users.elitherl = import ./home/H0615/elitherl.nix;
|
2023-05-04 07:01:03 +01:00
|
|
|
|
|
|
|
system.autoUpgrade = {
|
|
|
|
enable = false;
|
|
|
|
allowReboot = false;
|
|
|
|
};
|
2023-03-28 17:14:10 +01:00
|
|
|
}
|