Skip to content

Commit

Permalink
fixup! refactor(specialArgs,nixosConfigurations/*): use config.passthru
Browse files Browse the repository at this point in the history
  • Loading branch information
steveej committed Oct 4, 2024
1 parent 37e217c commit b22f5fc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ in
primaryIpv6 = "2a01:4f9:4b:1a93::1/64";
};

networking.hostName = {
networking = {
inherit (config.passthru) hostName domain;
}; # Define your hostname.
hostName = "${config.passthru.primaryIpv4}";
};
hostName = config.passthru.primaryIpv4;

nix.settings.max-jobs = 12;

Expand Down

0 comments on commit b22f5fc

Please sign in to comment.