persystem wrapper

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