diff options
| -rw-r--r-- | flake.nix | 1 | ||||
| -rw-r--r-- | profiles/station/suckless.nix | 5 |
2 files changed, 3 insertions, 3 deletions
@@ -40,7 +40,6 @@ ++ [({ config, ... }: { nixpkgs.overlays = with lib; [(composeManyExtensions [ (import ./overlays/vimPlugins.nix {inherit pkgs;}) - (import ./overlays/suckless.nix {inherit pkgs; home = config.ivi.home;}) ])];}) ]; }; diff --git a/profiles/station/suckless.nix b/profiles/station/suckless.nix index 65e0e45..9fb78d2 100644 --- a/profiles/station/suckless.nix +++ b/profiles/station/suckless.nix @@ -3,9 +3,10 @@ config, pkgs, suckless, + lib, ... -}: let -in { +}: with lib; { + nixpkgs.overlays = [(import ./overlays/suckless.nix {inherit pkgs; home = config.ivi.home;})]; hm = { xsession = { enable = true; |
