This commit is contained in:
andromeda
2026-01-06 18:30:12 +01:00
parent c9a5c521db
commit beaceffff0
13 changed files with 32 additions and 6 deletions

View File

@@ -1,4 +1,8 @@
{config, ...}: {
{
config,
lib,
...
}: {
# flakes usage
nix.settings.experimental-features = [
"flakes"
@@ -12,5 +16,5 @@
# cleans /tmp to maintain a tidy system
boot.tmp.cleanOnBoot = true;
networking.domain = config.networking.hostname;
networking.domain = lib.mkDefault config.networking.hostName;
}