27 lines
596 B
Nix
27 lines
596 B
Nix
{inputs, ...}: {
|
|
flake.overlays.default = _final: prev: {
|
|
i-found-my-sddm-theme = prev.where-is-my-sddm-theme.override {
|
|
themeConfig.General = {
|
|
backgroundFill = "#161616";
|
|
basicTextColor = "#f2f4f8";
|
|
};
|
|
};
|
|
fairfax = prev.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 xonsh;
|
|
};
|
|
};
|
|
}
|