1
0
Fork 0
nix-config/systems/x86_64-linux/dns-1/default.nix

47 lines
800 B
Nix

{
lib,
modulesPath,
namespace,
...
}:
with lib.${namespace};
{
imports = [ (modulesPath + "/virtualisation/proxmox-lxc.nix") ];
documentation.man.generateCaches = false;
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
users.users.philipp = {
isNormalUser = true;
description = "Philipp Böhm";
extraGroups = [
"wheel"
];
};
awesome-flake = {
services = {
ssh = enabled;
technitium-dns-server = {
enable = true;
openFirewall = true;
};
};
cli = {
neovim = enabled;
eza = enabled;
nh = enabled;
};
};
# Set your time zone
time.timeZone = "Europe/Berlin";
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "24.11";
}