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

View file

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

View file

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