nixos-configs/devices/binto/default.nix

73 lines
1.3 KiB
Nix
Raw Permalink Normal View History

{
config,
self,
...
}: let
inherit (config.vars) mainUser hostName;
in {
2023-10-15 23:12:19 -04:00
imports = [
./hardware-configuration.nix
2024-04-14 14:26:59 -04:00
../../modules/android.nix
2023-11-30 17:17:34 -05:00
../../modules/ags
2023-10-15 23:12:19 -04:00
../../modules/audio.nix
../../modules/kmscon.nix
../../modules/printer.nix
2024-04-24 17:44:08 -04:00
../../modules/ratbag-mice.nix
../../modules/sshd.nix
2023-10-20 13:03:36 -04:00
../../modules/tailscale.nix
2023-10-15 23:12:19 -04:00
./modules/gpu-replay.nix
./modules/nix-gaming.nix
self.nixosModules.desktop
2023-10-15 23:12:19 -04:00
];
vars = {
mainUser = "matt";
hostName = "binto";
promptMainColor = "purple";
};
roles.desktop = {
user = config.vars.mainUser;
mainMonitor = "desc:GIGA-BYTE TECHNOLOGY CO. LTD. G27QC 0x00000B1D";
displayManager.duplicateScreen = false;
2023-11-23 01:23:15 -05:00
fontSize = 12.5;
};
users.users.${mainUser} = {
isNormalUser = true;
extraGroups = [
"wheel"
"input"
"uinput"
"adm"
"video"
"libvirtd"
];
};
home-manager.users.${mainUser} = {
imports = [
../../home/firefox
];
# No touchy
home.stateVersion = "23.11";
};
2023-10-15 23:12:19 -04:00
networking = {
inherit hostName;
2023-10-15 23:12:19 -04:00
networkmanager.enable = true;
firewall.enable = false;
};
2023-10-17 18:45:08 -04:00
# Set your time zone.
2023-11-23 01:15:32 -05:00
time.timeZone = "America/Montreal";
2023-10-17 18:45:08 -04:00
# No touchy
system.stateVersion = "23.11";
2023-10-15 23:12:19 -04:00
}