
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.
21 lines
406 B
Nix
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;
|
|
};
|
|
};
|
|
}
|