1
0
Fork 0

add new host, add technitium module

This commit is contained in:
Philipp 2025-04-22 09:48:56 +02:00
parent f8312a9447
commit 9aab11df18
Signed by: Philipp
SSH key fingerprint: SHA256:5C5NlogDGXHvoLRASJmU3LXZM8nvKiG3BOZPKWqVxxA
5 changed files with 260 additions and 36 deletions

View file

@ -0,0 +1,52 @@
{
lib,
pkgs,
namespace,
...
}:
with lib.${namespace};
{
imports = [
./hardware-configuration.nix
./networking.nix
];
boot.loader = {
grub.enable = 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";
}