diff options
-rw-r--r-- | ci-builds.nix | 4 | ||||
-rw-r--r-- | users/glittershark/system/system/default.nix | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/ci-builds.nix b/ci-builds.nix index 7038de51a887..e8fe648c0826 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 000000000000..dc9e9a75961d --- /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; +} |