alqueva/overlays/default.nix

32 lines
793 B
Nix
Raw Normal View History

2024-10-16 17:01:46 +01:00
{inputs, ...}: {
2024-11-11 18:51:58 +00:00
flake.overlays.default = final: prev: {
fairfax = final.callPackage ./derivations/fairfax.nix {};
nicotine-plus = final.callPackage ./derivations/nicotine-plus.nix {};
rose-pine-gtk-theme = prev.rose-pine-gtk-theme.overrideAttrs (prevAttrs: {
version = "master";
src = prev.fetchFromGitHub {
owner = "rose-pine";
repo = "gtk";
rev = "master";
hash = "sha256-vCWs+TOVURl18EdbJr5QAHfB+JX9lYJ3TPO6IklKeFE=";
};
});
2024-10-16 17:01:46 +01:00
};
perSystem = {
pkgs,
system,
...
}: {
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
overlays = [
inputs.self.overlays.default
];
};
packages = {
inherit (pkgs) fairfax nicotine-plus rose-pine-gtk-theme;
2024-10-16 17:01:46 +01:00
};
};
}