/sys/machines -> /hosts

This commit is contained in:
xunuwu 2025-06-06 11:22:15 +02:00
parent 2c475dd099
commit 9c9a3d543c
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
38 changed files with 2 additions and 2 deletions

View file

@ -15,11 +15,11 @@
systems = ["x86_64-linux"]; systems = ["x86_64-linux"];
flake.nixosConfigurations = flake.nixosConfigurations =
b.readDir ./sys/machines b.readDir ./hosts
|> b.mapAttrs (hostname: _: |> b.mapAttrs (hostname: _:
l.nixosSystem { l.nixosSystem {
modules = [ modules = [
./sys/machines/${hostname} ./hosts/${hostname}
./secrets/${hostname} ./secrets/${hostname}
inputs.sops-nix.nixosModules.sops inputs.sops-nix.nixosModules.sops
]; ];