2024-02-12 17:40:58 +08:00
|
|
|
{ pkgs
|
|
|
|
, lib
|
|
|
|
, config
|
|
|
|
, ... }: with lib; let
|
|
|
|
gui = with config.global.gpu; enable && session;
|
|
|
|
cfg = config.home.catppuccin;
|
|
|
|
in {
|
|
|
|
options.home.catppuccin = {
|
|
|
|
enable = mkEnableOption "catppuccin colour scheme" // { default = gui; };
|
|
|
|
|
|
|
|
gtk = {
|
|
|
|
package = mkOption {
|
|
|
|
type = with types; package;
|
2024-06-24 09:56:31 +08:00
|
|
|
default = (pkgs.catppuccin-gtk.overrideAttrs {
|
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "catppuccin";
|
|
|
|
repo = "gtk";
|
|
|
|
rev = "v1.0.3";
|
|
|
|
fetchSubmodules = true;
|
|
|
|
hash = "sha256-q5/VcFsm3vNEw55zq/vcM11eo456SYE5TQA3g2VQjGc=";
|
|
|
|
};
|
|
|
|
|
|
|
|
postUnpack = "";
|
|
|
|
}).override {
|
2024-02-12 17:40:58 +08:00
|
|
|
accents = [ "pink" ];
|
|
|
|
size = "compact";
|
|
|
|
#tweaks = [ "rimless" "black" ];
|
2024-06-24 09:56:31 +08:00
|
|
|
variant = "mocha";
|
2024-02-12 17:40:58 +08:00
|
|
|
};
|
|
|
|
description = "catppuccin gtk theme package";
|
|
|
|
};
|
|
|
|
name = mkOption {
|
|
|
|
type = with types; str;
|
2024-07-13 21:05:28 +08:00
|
|
|
default = "catppuccin-mocha-pink-compact";
|
2024-02-12 17:40:58 +08:00
|
|
|
description = "name of catppuccin gtk theme";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
cursor = {
|
|
|
|
package = mkOption {
|
|
|
|
type = with types; package;
|
2024-06-24 09:56:31 +08:00
|
|
|
default = pkgs.catppuccin-cursors.mochaDark;
|
2024-02-12 17:40:58 +08:00
|
|
|
description = "catppuccin cursor theme package";
|
|
|
|
};
|
|
|
|
name = mkOption {
|
|
|
|
type = with types; str;
|
2024-06-24 09:56:31 +08:00
|
|
|
default = "catppuccin-mocha-dark-cursors";
|
2024-02-12 17:40:58 +08:00
|
|
|
description = "name of catppuccin cursor theme";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = {
|
|
|
|
users.homeModules = [
|
|
|
|
# this module passes catppuccin configuration to home-manager
|
|
|
|
{ passthrough.catppuccin = cfg; }
|
|
|
|
];
|
|
|
|
|
2024-06-24 09:56:31 +08:00
|
|
|
catppuccin.enable = cfg.enable;
|
|
|
|
|
2024-02-12 17:40:58 +08:00
|
|
|
# gtk and cursor themes
|
2024-06-24 09:56:31 +08:00
|
|
|
environment.systemPackages = with cfg; mkIf enable [
|
2024-02-12 17:40:58 +08:00
|
|
|
gtk.package cursor.package
|
|
|
|
];
|
|
|
|
|
|
|
|
# override greetd theme
|
|
|
|
programs.regreet = mkIf cfg.enable {
|
2024-08-28 22:15:58 +08:00
|
|
|
theme = {
|
|
|
|
inherit (cfg.gtk) name package;
|
|
|
|
};
|
|
|
|
cursorTheme = {
|
|
|
|
inherit (cfg.cursor) name package;
|
|
|
|
};
|
2024-02-12 17:40:58 +08:00
|
|
|
settings = {
|
2024-02-12 19:25:55 +08:00
|
|
|
background.path = ./solid.png;
|
2024-02-12 17:40:58 +08:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|