alqueva/overlays/default.nix
Artur Manuel ab8461fd06 meta: unarchiving repository
false alarm. i don't think my brother
will particularly care about his SSD
getting taken over by me, as he hasn't
cared in the past... hopefully it's
the same this time.
2024-11-11 00:48:02 +00:00

21 lines
406 B
Nix

{inputs, ...}: {
flake.overlays.default = final: _prev: {
fairfax = final.callPackage ./derivations/fairfax.nix {};
};
perSystem = {
pkgs,
system,
...
}: {
_module.args.pkgs = import inputs.nixpkgs {
inherit system;
overlays = [
inputs.self.overlays.default
];
};
packages = {
inherit (pkgs) i-found-my-sddm-theme fairfax;
};
};
}