2024-03-09 12:58:01 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
inputs,
|
2024-10-06 00:26:22 +02:00
|
|
|
lib,
|
2024-03-09 12:58:01 +01:00
|
|
|
...
|
|
|
|
}: {
|
|
|
|
dconf.settings = {
|
|
|
|
"org/gnome/desktop/interface" = {
|
|
|
|
color-scheme = "prefer-dark";
|
2024-04-13 20:43:41 +02:00
|
|
|
cursor-theme = "Catppuccin-Mocha-Pink-Cursors";
|
2024-03-09 12:58:01 +01:00
|
|
|
};
|
2024-03-30 17:46:21 +01:00
|
|
|
"org/gnome/shell" = {
|
|
|
|
disable-user-extensions = false;
|
|
|
|
|
|
|
|
# `gnome-extensions list` for a list
|
|
|
|
enabled-extensions = [
|
|
|
|
"user-theme@gnome-shell-extensions.gcampax.github.com"
|
|
|
|
"trayIconsReloaded@selfmade.pl"
|
2024-04-18 13:31:55 +02:00
|
|
|
"burn-my-windows@schneegans.github.com"
|
|
|
|
"desktop-cube@schneegans.github.com"
|
2024-03-30 17:46:21 +01:00
|
|
|
"Vitals@CoreCoding.com"
|
2024-04-09 13:36:07 +02:00
|
|
|
"dash-to-panel@jderose9.github.com"
|
|
|
|
# "blur-my-shell@aunetx"
|
|
|
|
# "sound-output-device-chooser@kgshank.net"
|
2024-03-30 17:46:21 +01:00
|
|
|
"space-bar@luchrioh"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
"org/gnome/shell/extensions/user-theme" = {
|
|
|
|
name = "Catppuccin-Mocha-Compact-Pink-Dark";
|
|
|
|
};
|
2024-03-09 12:58:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
gtk = {
|
|
|
|
enable = true;
|
|
|
|
theme = {
|
|
|
|
name = "Catppuccin-Mocha-Compact-Pink-Dark";
|
|
|
|
package = pkgs.catppuccin-gtk.override {
|
|
|
|
accents = ["pink"];
|
|
|
|
size = "compact";
|
|
|
|
tweaks = ["rimless"];
|
|
|
|
variant = "mocha";
|
|
|
|
};
|
|
|
|
};
|
2024-03-19 22:08:38 +01:00
|
|
|
#gtk3.extraConfig = {
|
|
|
|
# Settings = ''
|
|
|
|
# gtk-application-prefer-dark-theme=1
|
|
|
|
# '';
|
|
|
|
#};
|
|
|
|
gtk4.extraConfig = {
|
|
|
|
Settings = ''
|
|
|
|
gtk-application-prefer-dark-theme=1
|
|
|
|
'';
|
|
|
|
};
|
2024-03-09 12:58:01 +01:00
|
|
|
};
|
2024-10-06 00:26:22 +02:00
|
|
|
home.packages = lib.optionals (config.os == "linux") (with pkgs; [
|
2024-03-30 17:46:21 +01:00
|
|
|
gnomeExtensions.user-themes
|
|
|
|
gnomeExtensions.blur-my-shell
|
|
|
|
gnomeExtensions.tray-icons-reloaded
|
|
|
|
gnomeExtensions.vitals
|
|
|
|
gnomeExtensions.dash-to-panel
|
|
|
|
gnomeExtensions.sound-output-device-chooser
|
|
|
|
gnomeExtensions.space-bar
|
2024-04-13 20:43:41 +02:00
|
|
|
gnomeExtensions.burn-my-windows
|
|
|
|
gnomeExtensions.desktop-cube
|
|
|
|
catppuccin-cursors.mochaPink
|
2024-10-06 00:26:22 +02:00
|
|
|
]);
|
2024-04-18 13:31:55 +02:00
|
|
|
# home.pointerCursor = {
|
|
|
|
# gtk.enable = true;
|
|
|
|
# x11.enable = true;
|
|
|
|
# name = "Catppuccin-Mocha-Pink-Cursors";
|
|
|
|
# package = pkgs.catppuccin-cursors.mochaPink;
|
|
|
|
# # size = 24;
|
|
|
|
# };
|
2024-03-09 12:58:01 +01:00
|
|
|
}
|