persystem wrapper

This commit is contained in:
John Lancaster
2026-04-10 09:35:35 -05:00
parent c044f2aa5a
commit 6df0f8d1ab
+5 -3
View File
@@ -1,4 +1,4 @@
{ inputs, ... }: { self, inputs, ... }:
let let
username = "john"; username = "john";
in in
@@ -51,8 +51,9 @@ in
}; };
}; };
flake.wrappers.zsh = { pkgs, wlib, ... }: { perSystem = { pkgs, ... }: {
imports = [wlib.wrapperModules.zsh]; packages.jsl-zsh = inputs.wrapper-modules.wrappers.zsh.wrap {
inherit pkgs;
extraPackages = with pkgs; [ extraPackages = with pkgs; [
btop btop
coreutils coreutils
@@ -62,4 +63,5 @@ in
zsh zsh
]; ];
}; };
};
} }