diff options
| author | Amir Saeid <amir@glgdgt.com> | 2026-04-29 22:16:31 +0100 |
|---|---|---|
| committer | Amir Saeid <amir@glgdgt.com> | 2026-04-29 22:16:31 +0100 |
| commit | b702dccffa02bd33235f4c6de4684613dbc6d4c6 (patch) | |
| tree | 412bf6294c4912695d1350840fb2a56c4459d954 /flake.nix | |
| parent | bf309bb0249429221c8afa9ddf633c58767bb7a1 (diff) | |
Retire custom .xinitrc
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; |
