2024-01-21 20:08:27 -05:00
|
|
|
deviceName: {config, ...}: let
|
|
|
|
inherit (config.vars) mainUser hostName;
|
|
|
|
in {
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
|
|
|
../../modules/kmscon.nix
|
|
|
|
../../modules/sshd.nix
|
|
|
|
../../modules/tailscale.nix
|
2024-01-21 22:11:38 -05:00
|
|
|
|
|
|
|
./modules/corosync.nix
|
|
|
|
./modules/pacemaker.nix
|
2024-01-21 20:08:27 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
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";
|
|
|
|
}
|