nixos-configs/devices/binto/default.nix

75 lines
1.5 KiB
Nix
Raw Normal View History

{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
../../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
./modules/gpu-replay.nix
./modules/nix-gaming.nix
./modules/nvidia.nix
2023-10-15 23:12:19 -04:00
];
vars = {
user = "matt";
hostName = "binto";
mainMonitor = "desc:GIGA-BYTE TECHNOLOGY CO. LTD. G27QC 0x00000B1D";
greetdDupe = false;
2023-11-23 01:23:15 -05:00
fontSize = 12.5;
};
users.users.${config.vars.user} = {
isNormalUser = true;
extraGroups = [
"wheel"
"input"
"uinput"
"adm"
"video"
"libvirtd"
];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPE39uk52+NIDLdHeoSHIEsOUUFRzj06AGn09z4TUOYm matt@OP9"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJGbLu+Gb7PiyNgNXMHemaQLnKixebx1/4cdJGna9OQp matt@wim"
];
};
home-manager.users.${config.vars.user} = {
imports = [
../../home/firefox
./home/packages.nix
];
# No touchy
home.stateVersion = "23.11";
};
2023-10-15 23:12:19 -04:00
networking = {
inherit (config.vars) hostName;
2023-10-15 23:12:19 -04:00
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
}