overlay testing

This commit is contained in:
kossLAN 2024-11-14 23:35:09 -05:00
parent ec2df57d71
commit 30c3b61717
Signed by: kossLAN
SSH key fingerprint: SHA256:bdV0x+wdQHGJ6LgmstH3KV8OpWY+OOFmJcPcB0wQPV8

View file

@ -14,7 +14,12 @@
["x86_64-linux" "aarch64-linux"]
(system: fn system nixpkgs.legacyPackages.${system});
in {
# Define a package for your project
# Overlay for using this in system configurations.
overlays.default = forEachSystem (system: (final: prev: {
zsh = self.packages.zsh.system.default;
}));
# Package so you can test this out, without installing :3.
packages = forEachSystem (system: pkgs: rec {
zsh = import ./nix/wrapZsh.nix {
inherit pkgs;