2023-09-08 12:27:34 +01:00
|
|
|
{ pkgs, ... }:
|
2023-09-07 09:36:42 +01:00
|
|
|
let
|
2023-09-11 17:22:14 +01:00
|
|
|
catppuccin-gtk = pkgs.catppuccin-gtk.override {
|
2023-09-07 14:34:24 +01:00
|
|
|
accents = [ "lavender" ];
|
2023-09-11 17:22:14 +01:00
|
|
|
size = "compact";
|
|
|
|
tweaks = [ "rimless" ];
|
|
|
|
variant = "macchiato";
|
2023-09-07 14:34:24 +01:00
|
|
|
};
|
2023-10-12 07:26:31 +01:00
|
|
|
delta-icon-theme = pkgs.callPackage ./pkgs/delta-icon-theme { };
|
|
|
|
# candy-icon-theme = pkgs.callPackage ./pkgs/candy-icon-theme { };
|
2023-09-07 09:36:42 +01:00
|
|
|
in {
|
2023-10-12 07:21:40 +01:00
|
|
|
stylix.targets.gtk.enable = false;
|
2023-09-08 12:27:34 +01:00
|
|
|
home.packages = with pkgs; [
|
|
|
|
gnome.adwaita-icon-theme
|
|
|
|
libsForQt5.breeze-gtk
|
|
|
|
hicolor-icon-theme
|
|
|
|
];
|
2023-04-11 13:01:23 +01:00
|
|
|
gtk = {
|
|
|
|
enable = true;
|
|
|
|
cursorTheme = {
|
2023-09-11 17:22:14 +01:00
|
|
|
package = pkgs.catppuccin-cursors.macchiatoLavender;
|
|
|
|
name = "Catppuccin-Macchiato-Lavender-Cursors";
|
2023-04-11 13:01:23 +01:00
|
|
|
};
|
2023-04-29 18:00:03 +01:00
|
|
|
iconTheme = {
|
2023-10-12 07:26:31 +01:00
|
|
|
package = delta-icon-theme;
|
|
|
|
name = "Delta";
|
2023-04-29 18:00:03 +01:00
|
|
|
};
|
2023-04-11 13:01:23 +01:00
|
|
|
theme = {
|
2023-09-11 17:22:14 +01:00
|
|
|
package = catppuccin-gtk;
|
|
|
|
name = "Catppuccin-Macchiato-Compact-Lavender-dark";
|
2023-04-11 13:01:23 +01:00
|
|
|
};
|
|
|
|
};
|
2023-09-27 13:57:32 +01:00
|
|
|
xdg.configFile."gtklock/config.ini".text = let
|
|
|
|
powerbar = "${pkgs.gtklock-powerbar-module}/lib/gtklock/powerbar-module.so";
|
|
|
|
playerctl =
|
|
|
|
"${pkgs.gtklock-playerctl-module}/lib/gtklock/playerctl-module.so";
|
|
|
|
in ''
|
|
|
|
[main]
|
|
|
|
start-hidden=true
|
|
|
|
modules=${powerbar};${playerctl}
|
|
|
|
|
|
|
|
[powerbar]
|
|
|
|
reboot-command=systemctl reboot
|
|
|
|
poweroff-command=systemctl -i poweroff
|
|
|
|
suspend-command=systemctl suspend
|
|
|
|
logout-command=hyprctl dispatch exit
|
|
|
|
|
|
|
|
[playerctl]
|
|
|
|
art-size=64
|
|
|
|
position=below-clock
|
|
|
|
'';
|
2023-04-11 13:01:23 +01:00
|
|
|
}
|