nixos-configs/devices/cluster/default.nix
matt1432 4ea15b6a9c
All checks were successful
Discord / discord commits (push) Successful in 27s
feat(servers): add init cluster hw configs
2024-01-21 20:08:27 -05:00

44 lines
729 B
Nix

deviceName: {config, ...}: let
inherit (config.vars) mainUser hostName;
in {
imports = [
./hardware-configuration.nix
../../modules/kmscon.nix
../../modules/sshd.nix
../../modules/tailscale.nix
];
vars = {
mainUser = "matt";
hostName = deviceName;
};
users.users.${mainUser} = {
isNormalUser = true;
extraGroups = [
"wheel"
"adm"
];
};
home-manager.users.${mainUser} = {
imports = [];
# No touchy
home.stateVersion = "24.05";
};
networking = {
inherit hostName;
resolvconf.enable = true;
firewall.enable = false;
};
# Set your time zone.
time.timeZone = "America/Montreal";
# No touchy
system.stateVersion = "24.05";
}