feat: set network.hostName to meta.hostname

This commit is contained in:
Nydragon 2025-01-31 16:13:30 +01:00
parent b3977d8d74
commit 2de14534fd
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
3 changed files with 10 additions and 5 deletions

View file

@ -6,6 +6,7 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (osConfig.modules.meta) hostname;
in in
mkIf config.programs.ssh.enable { mkIf config.programs.ssh.enable {
programs.ssh = { programs.ssh = {
@ -16,7 +17,7 @@ mkIf config.programs.ssh.enable {
user = "deck"; user = "deck";
port = 22; port = 22;
}; };
vm = mkIf (osConfig.networking.hostName == "marr") { vm = mkIf (hostname == "marr") {
hostname = "192.168.122.152"; hostname = "192.168.122.152";
user = "ny"; user = "ny";
port = 22; port = 22;

View file

@ -1,6 +1,13 @@
{ config, ... }:
let
inherit (config.modules.meta) hostname;
in
{ {
imports = [ imports = [
./wifi.nix ./wifi.nix
./bluetooth.nix ./bluetooth.nix
]; ];
config = {
networking.hostName = hostname;
};
} }

View file

@ -43,10 +43,7 @@ in
"${self}/hosts/${hostname}" "${self}/hosts/${hostname}"
"${self}/options" "${self}/options"
"${self}/modules" "${self}/modules"
{ { modules.meta.hostname = hostname; }
modules.meta.hostname = hostname;
networking.hostName = hostname;
}
] ++ extraModules; ] ++ extraModules;
specialArgs = { specialArgs = {
inherit inputs inputs'; inherit inputs inputs';