nixos-configs/devices/binto/default.nix

76 lines
1.3 KiB
Nix
Raw Normal View History

2023-11-22 15:33:16 -05:00
{...}: {
2023-10-15 23:12:19 -04:00
imports = [
./hardware-configuration.nix
../../modules/audio.nix
2023-11-23 01:23:15 -05:00
../../modules/greetd
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
./modules/desktop.nix
./modules/gpu-replay.nix
./modules/nix-gaming.nix
./modules/nvidia.nix
2023-10-15 23:12:19 -04:00
];
services.device-vars = {
username = "matt";
2023-11-23 01:23:15 -05:00
configDir = "/home/matt/.nix/devices/binto/config";
mainMonitor = "DP-5";
greetdDupe = false;
2023-11-23 01:23:15 -05:00
fontSize = 12.5;
};
users.users.matt = {
isNormalUser = true;
extraGroups = [
"wheel"
"input"
"uinput"
"adm"
"mlocate"
"video"
"libvirtd"
];
};
home-manager.users = {
matt = {
imports = [
../../home/dconf.nix
../../home/firefox
../../home/hyprland
2023-11-27 15:50:20 -05:00
./home/ags.nix
./home/packages.nix
];
# No touchy
home.stateVersion = "23.11";
};
};
2023-10-15 23:12:19 -04:00
networking = {
hostName = "binto";
networkmanager.enable = true;
firewall.enable = false;
};
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
# No touchy
system.stateVersion = "23.11";
2023-10-15 23:12:19 -04:00
}