mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-08 04:38:06 +01:00
34 lines
775 B
Nix
34 lines
775 B
Nix
{ pkgs, ... }:
|
|
{
|
|
dconf.settings = {
|
|
"org/gnome/shell" = {
|
|
enabled-extensions = with pkgs.gnomeExtensions; [
|
|
appindicator.extensionUuid
|
|
caffeine.extensionUuid
|
|
dash-to-dock.extensionUuid
|
|
wallpaper-slideshow.extensionUuid
|
|
];
|
|
};
|
|
"org/gnome/desktop/interface".color-scheme = "prefer-dark";
|
|
};
|
|
|
|
gtk = {
|
|
enable = true;
|
|
colorScheme = "dark";
|
|
iconTheme = {
|
|
name = "Papirus";
|
|
package = pkgs.papirus-icon-theme;
|
|
};
|
|
cursorTheme = {
|
|
name = "Bibata-Modern-Classic";
|
|
package = pkgs.bibata-cursors;
|
|
};
|
|
};
|
|
|
|
# Fix for steam cursor
|
|
home.file.".local/share/icons/default" = {
|
|
source = "${pkgs.bibata-cursors}/share/icons/Bibata-Modern-Classic/";
|
|
recursive = true;
|
|
};
|
|
}
|