persystem wrapper
This commit is contained in:
+14
-12
@@ -1,4 +1,4 @@
|
|||||||
{ inputs, ... }:
|
{ self, inputs, ... }:
|
||||||
let
|
let
|
||||||
username = "john";
|
username = "john";
|
||||||
in
|
in
|
||||||
@@ -50,16 +50,18 @@ 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
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user