aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hm/sils/theming.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--modules/hm/sils/theming.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/hm/sils/theming.nix b/modules/hm/sils/theming.nix
new file mode 100644
index 0000000..958560d
--- /dev/null
+++ b/modules/hm/sils/theming.nix
@@ -0,0 +1,24 @@
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}: let
+ cfg = config.sils.theming;
+in {
+ options.sils.theming.enable = lib.mkEnableOption "theming";
+ config = lib.mkIf cfg.enable {
+ stylix = {
+ enable = true;
+ iconTheme = {
+ enable = true;
+ dark = "Papirus-dark";
+ light = "Papirus-light";
+ package = pkgs.catppuccin-papirus-folders.override {
+ flavor = "mocha";
+ accent = "mauve";
+ };
+ };
+ };
+ };
+}