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
username = "john";
in
@@ -51,8 +51,9 @@ in
};
};
flake.wrappers.zsh = { pkgs, wlib, ... }: {
imports = [wlib.wrapperModules.zsh];
perSystem = { pkgs, ... }: {
packages.jsl-zsh = inputs.wrapper-modules.wrappers.zsh.wrap {
inherit pkgs;
extraPackages = with pkgs; [
btop
coreutils
@@ -62,4 +63,5 @@ in
zsh
];
};
};
}