2024-06-27 00:56:27 -04:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
self,
|
|
|
|
...
|
|
|
|
}: let
|
2024-01-09 13:13:04 -05:00
|
|
|
inherit (config.vars) mainUser hostName;
|
|
|
|
in {
|
2023-09-29 23:46:34 -04:00
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
2023-10-15 17:27:57 -04:00
|
|
|
|
2024-04-14 14:26:59 -04:00
|
|
|
../../modules/android.nix
|
2023-11-30 17:17:34 -05:00
|
|
|
../../modules/ags
|
2023-10-15 17:27:57 -04:00
|
|
|
../../modules/audio.nix
|
|
|
|
../../modules/kmscon.nix
|
2023-10-15 17:40:57 -04:00
|
|
|
../../modules/plymouth.nix
|
2023-10-15 17:27:57 -04:00
|
|
|
../../modules/printer.nix
|
2023-10-20 13:07:18 -04:00
|
|
|
../../modules/tailscale.nix
|
2023-10-15 17:27:57 -04:00
|
|
|
|
2023-10-15 22:52:15 -04:00
|
|
|
./modules/security.nix
|
2024-06-27 00:56:27 -04:00
|
|
|
|
|
|
|
self.nixosModules.desktop
|
2023-09-29 23:46:34 -04:00
|
|
|
];
|
2023-06-13 23:34:03 -04:00
|
|
|
|
2023-12-01 14:12:33 -05:00
|
|
|
vars = {
|
2024-01-09 13:13:04 -05:00
|
|
|
mainUser = "matt";
|
2023-12-01 14:12:33 -05:00
|
|
|
hostName = "wim";
|
2024-01-24 18:39:18 -05:00
|
|
|
promptMainColor = "purple";
|
2024-06-27 00:56:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
roles.desktop = {
|
|
|
|
user = config.vars.mainUser;
|
|
|
|
|
2023-12-17 17:34:56 -05:00
|
|
|
mainMonitor = "eDP-1";
|
2024-06-27 00:56:27 -04:00
|
|
|
isLaptop = true;
|
|
|
|
isTouchscreen = true;
|
|
|
|
|
|
|
|
fontSize = 12.5;
|
2023-10-18 13:50:00 -04:00
|
|
|
};
|
|
|
|
|
2024-01-09 13:13:04 -05:00
|
|
|
users.users.${mainUser} = {
|
2023-10-18 12:31:57 -04:00
|
|
|
isNormalUser = true;
|
2023-10-18 14:00:52 -04:00
|
|
|
extraGroups = [
|
|
|
|
"wheel"
|
|
|
|
"input"
|
|
|
|
"uinput"
|
|
|
|
"adm"
|
|
|
|
"video"
|
|
|
|
"libvirtd"
|
|
|
|
];
|
2023-10-18 12:31:57 -04:00
|
|
|
};
|
2024-01-09 13:13:04 -05:00
|
|
|
home-manager.users.${mainUser} = {
|
2023-12-01 14:12:33 -05:00
|
|
|
imports = [
|
|
|
|
../../home/firefox
|
|
|
|
];
|
2023-10-18 12:31:57 -04:00
|
|
|
|
2023-12-01 14:12:33 -05:00
|
|
|
# No touchy
|
|
|
|
home.stateVersion = "23.05";
|
2023-10-18 12:31:57 -04:00
|
|
|
};
|
|
|
|
|
2023-09-17 15:53:56 -04:00
|
|
|
networking = {
|
2024-01-09 13:13:04 -05:00
|
|
|
inherit hostName;
|
2023-10-15 13:30:21 -04:00
|
|
|
networkmanager = {
|
|
|
|
enable = true;
|
|
|
|
wifi.backend = "wpa_supplicant";
|
|
|
|
};
|
2023-10-15 22:52:15 -04:00
|
|
|
firewall.enable = false;
|
2023-09-17 15:53:56 -04:00
|
|
|
};
|
2023-06-13 23:34:03 -04:00
|
|
|
|
|
|
|
# Set your time zone.
|
2023-07-02 21:03:44 -04:00
|
|
|
time.timeZone = "America/Montreal";
|
2023-06-13 23:34:03 -04:00
|
|
|
|
2023-10-18 12:31:57 -04:00
|
|
|
# No touchy
|
|
|
|
system.stateVersion = "23.05";
|
2023-06-13 23:34:03 -04:00
|
|
|
}
|