From 597bd5cc75286980318a0dbba152e8b5ae34351b Mon Sep 17 00:00:00 2001 From: Spectre Date: Sun, 16 Mar 2025 00:26:15 +0100 Subject: [PATCH] pad --- flake.nix | 5 +++++ hosts/lilith-pad/default.nix | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 hosts/lilith-pad/default.nix diff --git a/flake.nix b/flake.nix index 52e2479b..22702f48 100644 --- a/flake.nix +++ b/flake.nix @@ -86,6 +86,11 @@ nixosConfigurations = lib.pipe ./hosts [ builtins.readDir (lib.filterAttrs (_: type: type == "directory")) + (lib.filterAttrs ( + name: _: + builtins.pathExists ./hosts/${name}/default.nix + && builtins.pathExists ./hosts/${name}/hardware-configuration.nix + )) (builtins.mapAttrs (name: _: makeHost name (systemFromHardwareConf name))) ]; }; diff --git a/hosts/lilith-pad/default.nix b/hosts/lilith-pad/default.nix new file mode 100644 index 00000000..ea8f50d4 --- /dev/null +++ b/hosts/lilith-pad/default.nix @@ -0,0 +1,2 @@ +{...}: { +}