feat(gui): switch to papirus icon theme
This commit is contained in:
parent
bf8d29b9ac
commit
4651426631
3 changed files with 12 additions and 12 deletions
|
@ -4,26 +4,26 @@
|
|||
, ... }: with lib; mkIf config.passthrough.gui {
|
||||
# cursor theme
|
||||
home.pointerCursor = {
|
||||
package = pkgs.bibata-cursors;
|
||||
name = "Bibata-Modern-Classic";
|
||||
package = mkDefault pkgs.bibata-cursors;
|
||||
name = mkDefault "Bibata-Modern-Classic";
|
||||
size = 24;
|
||||
};
|
||||
|
||||
# gtk theme
|
||||
gtk.theme = {
|
||||
package = pkgs.whitesur-gtk-theme;
|
||||
name = "WhiteSur-Dark";
|
||||
package = mkDefault pkgs.whitesur-gtk-theme;
|
||||
name = mkDefault "WhiteSur-Dark";
|
||||
};
|
||||
|
||||
# gtk icons
|
||||
gtk.iconTheme = {
|
||||
package = pkgs.whitesur-icon-theme;
|
||||
name = "WhiteSur-dark";
|
||||
package = mkDefault pkgs.papirus-icon-theme;
|
||||
name = mkDefault "Papirus-Dark";
|
||||
};
|
||||
|
||||
# unify qt theme
|
||||
qt.platformTheme = "gtk";
|
||||
qt.platformTheme = mkDefault "gtk";
|
||||
|
||||
gtk.enable = true;
|
||||
qt.enable = true;
|
||||
gtk.enable = mkDefault true;
|
||||
qt.enable = mkDefault true;
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ in {
|
|||
# themes and icons
|
||||
environment.systemPackages = with pkgs; mkIf gui [
|
||||
whitesur-gtk-theme whitesur-icon-theme
|
||||
bibata-cursors
|
||||
papirus-icon-theme bibata-cursors
|
||||
];
|
||||
|
||||
fonts.enableDefaultPackages = mkIf gui true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue