about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ci-builds.nix4
-rw-r--r--users/glittershark/system/system/default.nix7
2 files changed, 11 insertions, 0 deletions
diff --git a/ci-builds.nix b/ci-builds.nix
index 7038de51a8..e8fe648c08 100644
--- a/ci-builds.nix
+++ b/ci-builds.nix
@@ -96,4 +96,8 @@ in lib.fix (self: {
     finito
     homepage
   ];
+
+  glittershark = with depot.users.glittershark; [
+    system.system.chupacabra
+  ];
 })
diff --git a/users/glittershark/system/system/default.nix b/users/glittershark/system/system/default.nix
new file mode 100644
index 0000000000..dc9e9a7596
--- /dev/null
+++ b/users/glittershark/system/system/default.nix
@@ -0,0 +1,7 @@
+{ depot, ... }:
+
+{
+  chupacabra = (depot.third_party.nixos {
+    configuration = import ./machines/chupacabra.nix;
+  }).system;
+}