refactor: extract host config into 'host.nix' files

This commit is contained in:
2026-03-11 23:36:54 +01:00
parent 12481d7468
commit aa98056f23
12 changed files with 30 additions and 30 deletions

View File

@@ -14,6 +14,7 @@ in
inputs.disko.nixosModules.disko
../../modules/common
./hard.nix
./host.nix
inputs.nixos-hardware.nixosModules.common-cpu-intel
inputs.nixos-hardware.nixosModules.common-pc
inputs.nixos-hardware.nixosModules.common-pc-ssd
@@ -43,11 +44,6 @@ in
../../modules/yubikey
];
host = {
username = "h";
name = "andromache";
};
home-manager.users.${config.host.username} = import ../../home/hosts/andromache {
inherit
inputs

View File

@@ -0,0 +1,4 @@
{
username = "h";
name = "andromache";
}

View File

@@ -13,6 +13,7 @@ in
inputs.disko.nixosModules.disko
../../modules/common
./hard.nix
./host.nix
inputs.nixos-hardware.nixosModules.common-pc
inputs.nixos-hardware.nixosModules.common-pc-ssd
# inputs.nixos-hardware.nixosModules.lenovo-thinkpad-e14-intel-gen7 (not available yet?)
@@ -40,11 +41,6 @@ in
../../modules/nfc
];
host = {
username = "h";
name = "astyanax";
};
home-manager.users.${config.host.username} = import ../../home/hosts/astyanax {
inherit
inputs

4
hosts/astyanax/host.nix Normal file
View File

@@ -0,0 +1,4 @@
{
username = "h";
name = "astyanax";
}

View File

@@ -8,13 +8,9 @@
./hard.nix
../../modules/ssh
../../modules/common
./host.nix
];
host = {
username = "h";
name = "eetion-02";
};
ssh = {
inherit (config.host) username;
publicHostname = config.host.name;

4
hosts/eetion-02/host.nix Normal file
View File

@@ -0,0 +1,4 @@
{
username = "h";
name = "eetion-02";
}

View File

@@ -8,14 +8,10 @@
./hard.nix
../../modules/ssh
../../modules/common
./host.nix
# ../../modules/uptime-kuma
];
host = {
username = "h";
name = "eetion";
};
ssh = {
inherit (config.host) username;
publicHostname = config.host.name;

4
hosts/eetion/host.nix Normal file
View File

@@ -0,0 +1,4 @@
{
username = "h";
name = "eetion";
}

View File

@@ -12,15 +12,11 @@
inputs.disko.nixosModules.disko
../../modules/common
./hard.nix
./host.nix
../../modules/ssh
../../modules/docker
];
host = {
username = "username";
name = "hecuba";
};
networking.hostName = config.host.name;
ssh = {
inherit (config.host) username;

4
hosts/hecuba/host.nix Normal file
View File

@@ -0,0 +1,4 @@
{
username = "username";
name = "hecuba";
}

View File

@@ -12,6 +12,7 @@
./hard.nix
inputs.sops-nix.nixosModules.sops
./disk.nix
./host.nix
../../modules/boot/bootloader.nix
../../modules/keyboard
(import ../../modules/networking { hostName = config.host.name; })
@@ -27,11 +28,6 @@
})
];
host = {
username = "h";
name = "vm";
};
home-manager.users.${config.host.username} = import ../../home/hosts/vm {
inherit inputs config pkgs;
};

4
hosts/vm/host.nix Normal file
View File

@@ -0,0 +1,4 @@
{
username = "h";
name = "vm";
}