about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/nixos/default.nix b/nixos/default.nix
index 8fc1ba7..9e368db 100644
--- a/nixos/default.nix
+++ b/nixos/default.nix
@@ -1,4 +1,4 @@
-{ self, unstable, ... } @ inputs:
+{ self, unstable, nixpkgs-crystal, ... } @ inputs:
 
 {
   alpha = self.lib.mkSystem {
@@ -26,5 +26,11 @@
       inputs.sops-nix.nixosModules.sops
       inputs.impermanence.nixosModules.impermanence
     ];
+    overlays = [
+      (final: prev: {
+        inherit (nixpkgs-crystal.legacyPackages.x86_64-linux)
+          crystal invidious;
+      })
+    ];
   };
 }