1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

fix: set hostname with higher priority

This commit is contained in:
oddlama 2023-07-01 01:44:26 +02:00
parent 11ba487bf0
commit aaf3babf9b
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
2 changed files with 1 additions and 3 deletions

View file

@ -17,7 +17,6 @@
mkOption mkOption
mkOptionType mkOptionType
mkMerge mkMerge
optionalAttrs
recursiveUpdate recursiveUpdate
hasAttrByPath hasAttrByPath
setAttrByPath setAttrByPath

View file

@ -6,7 +6,6 @@
inherit inherit
(lib) (lib)
mdDoc mdDoc
mkDefault
mkOption mkOption
types types
; ;
@ -26,6 +25,6 @@ in {
}; };
config = { config = {
networking.hostName = mkDefault config.node.name; networking.hostName = config.node.name;
}; };
} }