nixos-configs/devices/servivi/default.nix

74 lines
1.6 KiB
Nix
Raw Normal View History

2024-07-24 15:49:31 -04:00
{
config,
self,
...
}: let
inherit (config.vars) mainUser hostName;
in {
# ------------------------------------------------
# Imports
# ------------------------------------------------
imports = [
./hardware-configuration.nix
../../modules/kmscon.nix
../../modules/sshd.nix
../../modules/tailscale.nix
./modules/7-days-to-die.nix
./modules/binary-cache.nix
./modules/minecraft.nix
2024-03-01 18:20:15 -05:00
./modules/nfs.nix
2024-07-24 15:49:31 -04:00
self.nixosModules.docker
];
# State Version: DO NOT CHANGE
system.stateVersion = "24.05";
home-manager.users.${mainUser}.home.stateVersion = "24.05";
# ------------------------------------------------
# User Settings
# ------------------------------------------------
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"
];
};
};
networking = {
inherit hostName;
resolvconf.enable = true;
firewall.enable = false;
};
time.timeZone = "America/Montreal";
# ------------------------------------------------
# `Self` Modules configuration
# ------------------------------------------------
2024-07-24 15:49:31 -04:00
# ...
}