feat: sddm module

This commit is contained in:
Artur Manuel 2024-10-16 17:01:46 +01:00
commit 2c70c86c8e
7 changed files with 172 additions and 69 deletions

26
overlays/default.nix Normal file
View 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;
};
};
}