2023-12-01 14:12:33 -05:00
|
|
|
{config, ...}: {
|
2023-10-15 23:12:19 -04:00
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
2023-11-30 17:17:34 -05:00
|
|
|
../../modules/ags
|
2023-10-15 23:12:19 -04:00
|
|
|
../../modules/audio.nix
|
2023-12-04 00:40:27 -05:00
|
|
|
../../modules/hyprland
|
2023-10-15 23:12:19 -04:00
|
|
|
../../modules/kmscon.nix
|
|
|
|
../../modules/printer.nix
|
2023-11-23 01:19:39 -05:00
|
|
|
../../modules/proton-bridge.nix
|
2023-10-20 13:03:36 -04:00
|
|
|
../../modules/tailscale.nix
|
2023-10-15 23:12:19 -04:00
|
|
|
|
2023-11-13 00:03:28 -05:00
|
|
|
./modules/gpu-replay.nix
|
2023-10-17 19:10:54 -04:00
|
|
|
./modules/nix-gaming.nix
|
2023-10-18 14:00:52 -04:00
|
|
|
./modules/nvidia.nix
|
2023-10-15 23:12:19 -04:00
|
|
|
];
|
|
|
|
|
2023-12-01 14:12:33 -05:00
|
|
|
vars = {
|
|
|
|
user = "matt";
|
|
|
|
hostName = "binto";
|
2023-12-05 15:07:50 -05:00
|
|
|
mainMonitor = "desc:GIGA-BYTE TECHNOLOGY CO. LTD. G27QC 0x00000B1D";
|
2023-11-25 19:24:33 -05:00
|
|
|
greetdDupe = false;
|
2023-11-23 01:23:15 -05:00
|
|
|
fontSize = 12.5;
|
2023-10-18 13:50:00 -04:00
|
|
|
};
|
|
|
|
|
2023-12-01 14:12:33 -05:00
|
|
|
users.users.${config.vars.user} = {
|
2023-10-18 14:00:52 -04:00
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [
|
|
|
|
"wheel"
|
|
|
|
"input"
|
|
|
|
"uinput"
|
|
|
|
"adm"
|
|
|
|
"video"
|
|
|
|
"libvirtd"
|
|
|
|
];
|
|
|
|
};
|
2023-12-01 14:12:33 -05:00
|
|
|
home-manager.users.${config.vars.user} = {
|
|
|
|
imports = [
|
|
|
|
../../home/firefox
|
2023-11-09 17:21:09 -05:00
|
|
|
|
2023-12-01 14:12:33 -05:00
|
|
|
./home/packages.nix
|
|
|
|
];
|
2023-10-18 14:00:52 -04:00
|
|
|
|
2023-12-01 14:12:33 -05:00
|
|
|
# No touchy
|
|
|
|
home.stateVersion = "23.11";
|
2023-10-18 14:00:52 -04:00
|
|
|
};
|
|
|
|
|
2023-10-15 23:12:19 -04:00
|
|
|
networking = {
|
2023-12-01 14:12:33 -05:00
|
|
|
inherit (config.vars) hostName;
|
2023-10-15 23:12:19 -04:00
|
|
|
networkmanager.enable = true;
|
|
|
|
firewall.enable = false;
|
|
|
|
};
|
|
|
|
|
2023-10-17 17:53:10 -04:00
|
|
|
services = {
|
|
|
|
openssh = {
|
|
|
|
enable = true;
|
|
|
|
settings = {
|
|
|
|
PasswordAuthentication = false;
|
|
|
|
PermitRootLogin = "no";
|
|
|
|
};
|
|
|
|
};
|
2023-10-15 23:12:19 -04:00
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2023-10-18 14:00:52 -04:00
|
|
|
# No touchy
|
|
|
|
system.stateVersion = "23.11";
|
2023-10-15 23:12:19 -04:00
|
|
|
}
|