diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -8,6 +8,7 @@ flake-utils.url = "github:numtide/flake-utils"; nixgl.url = "github:nix-community/nixGL"; nixvim.url = "github:nix-community/nixvim"; + sctd.url = "github:amir/sctd"; }; outputs = @@ -19,6 +20,7 @@ flake-utils, nixgl, nixvim, + sctd, ... }: let @@ -45,7 +47,10 @@ { pkgs = import nixpkgs { inherit system; - overlays = [ nixgl.overlay ]; + overlays = [ + nixgl.overlay + sctd.overlays.default + ]; config = { allowUnfree = false; }; @@ -53,6 +58,7 @@ modules = [ ./hosts/${hostname}/home.nix nixvim.homeModules.nixvim + sctd.homeManagerModules.default ]; extraSpecialArgs = (mkExtraArgs system) // { inherit hostname; |
