2023-10-18 14:00:52 -04:00
|
|
|
{ ... }: {
|
2023-10-15 23:12:19 -04:00
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
|
|
|
../../modules/audio.nix
|
|
|
|
../../modules/kmscon.nix
|
|
|
|
../../modules/printer.nix
|
2023-10-20 13:03:36 -04:00
|
|
|
../../modules/tailscale.nix
|
2023-10-15 23:12:19 -04:00
|
|
|
|
2023-10-18 14:00:52 -04:00
|
|
|
./modules/desktop.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-10-28 18:20:09 -04:00
|
|
|
services.device-vars = {
|
2023-10-18 13:50:00 -04:00
|
|
|
username = "matt";
|
2023-10-18 18:37:50 -04:00
|
|
|
fontSize = 10.0;
|
2023-10-18 13:50:00 -04:00
|
|
|
};
|
|
|
|
|
2023-10-18 14:00:52 -04:00
|
|
|
users.users.matt = {
|
|
|
|
isNormalUser = true;
|
|
|
|
extraGroups = [
|
|
|
|
"wheel"
|
|
|
|
"input"
|
|
|
|
"uinput"
|
|
|
|
"adm"
|
|
|
|
"mlocate"
|
|
|
|
"video"
|
|
|
|
"libvirtd"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
home-manager.users = {
|
|
|
|
matt = {
|
|
|
|
|
|
|
|
imports = [
|
2023-10-28 18:20:09 -04:00
|
|
|
../../home/alacritty.nix
|
|
|
|
../../home/dconf.nix
|
|
|
|
../../home/firefox
|
2023-10-18 14:00:52 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
# No touchy
|
|
|
|
home.stateVersion = "23.11";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2023-10-15 23:12:19 -04:00
|
|
|
networking = {
|
|
|
|
hostName = "binto";
|
|
|
|
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.
|
|
|
|
time.timeZone = "America/Toronto";
|
|
|
|
|
2023-10-18 14:00:52 -04:00
|
|
|
# No touchy
|
|
|
|
system.stateVersion = "23.11";
|
2023-10-15 23:12:19 -04:00
|
|
|
}
|