nixos-configs/devices/servivi/default.nix

67 lines
1.2 KiB
Nix
Raw Normal View History

{config, ...}: let
inherit (config.vars) mainUser hostName;
in {
imports = [
./hardware-configuration.nix
2024-03-28 13:10:05 -04:00
../../modules/arion
../../modules/kmscon.nix
../../modules/sshd.nix
../../modules/tailscale.nix
./modules/binary-cache.nix
./modules/minecraft.nix
2024-03-01 18:20:15 -05:00
./modules/nfs.nix
./modules/steam-servers
];
vars = {
mainUser = "matt";
hostName = "servivi";
promptMainColor = "blue";
};
users.users = {
${mainUser} = {
isNormalUser = true;
extraGroups = [
"wheel"
"adm"
];
};
# https://nixos.wiki/wiki/Distributed_build
nixremote = {
isNormalUser = true;
createHome = true;
home = "/var/lib/nixremote";
homeMode = "500";
openssh.authorizedKeys.keys = [
2024-05-17 16:13:27 -04:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGOujvC5JLnyjqD1bzl/H0256Gxw/biu7spIHy3YJiDL"
];
};
};
home-manager.users.${mainUser} = {
imports = [];
# No touchy
home.stateVersion = "24.05";
};
2024-03-28 13:10:05 -04:00
arion.enable = true;
networking = {
inherit hostName;
resolvconf.enable = true;
firewall.enable = false;
};
# Set your time zone.
time.timeZone = "America/Montreal";
# No touchy
system.stateVersion = "24.05";
}