feat: sddm module
This commit is contained in:
parent
9bb12ee272
commit
2c70c86c8e
7 changed files with 172 additions and 69 deletions
26
overlays/default.nix
Normal file
26
overlays/default.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{inputs, ...}: {
|
||||
flake.overlays.default = _final: prev: {
|
||||
i-found-my-sddm-theme = prev.where-is-my-sddm-theme.override {
|
||||
themeConfig.General = {
|
||||
backgroundFill = "#161616";
|
||||
basicTextColor = "#f2f4f8";
|
||||
};
|
||||
};
|
||||
};
|
||||
perSystem = {
|
||||
pkgs,
|
||||
system,
|
||||
...
|
||||
}: {
|
||||
_module.args.pkgs = import inputs.nixpkgs {
|
||||
inherit system;
|
||||
overlays = [
|
||||
inputs.self.overlays.default
|
||||
];
|
||||
};
|
||||
|
||||
packages = {
|
||||
inherit (pkgs) i-found-my-sddm-theme;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue