diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2023-11-20 12:30:58 +0000 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2023-11-20 12:30:58 +0000 |
| commit | 014a0e2e9ecade436b6a150c9a3003bfa3917f77 (patch) | |
| tree | 56f3dd93534d2a8ef595e91d0832ec105e7ca24b | |
| parent | 02332abec027604abcd129f35256791cad423060 (diff) | |
fixup
| -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; |
