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

@@ -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;