1 files changed, 13 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index eb72f43..690dca1 100755
--- a/flake.nix
+++ b/flake.nix
@@ -51,7 +51,19 @@
inherit home-manager;
secrets = import secrets { inherit (nixpkgs) lib; };
};
- };
+ };
+ Spacebar-monitoring = nixpkgs.lib.nixosSystem {
+ system = "x86_64-linux";
+ modules = [
+ ./host/Spacebar-monitoring/configuration.nix
+ ./hardware-configuration.nix
+ home-manager.nixosModules.home-manager
+ ];
+ specialArgs = {
+ inherit home-manager;
+ secrets = import secrets { inherit (nixpkgs) lib; };
+ };
+ };
};
};
}
|