Add gtk cursor theme
This commit is contained in:
parent
d56fc29336
commit
21bdc107eb
|
@ -2,16 +2,22 @@
|
|||
{
|
||||
# Prevent error when enabling gtk https://github.com/nix-community/home-manager/issues/3113
|
||||
# error: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name ca.desrt.dconf was not provided by any .service files
|
||||
home.packages = [ pkgs.dconf ];
|
||||
home.packages = [
|
||||
pkgs.dconf
|
||||
pkgs.vimix-cursor-theme
|
||||
];
|
||||
gtk.enable = true;
|
||||
|
||||
home.file = {
|
||||
".icons/bibata".source = "${pkgs.bibata-cursors}/share/icons/Bibata-Modern-Classic";
|
||||
};
|
||||
home.file.".icons/default".source = "${pkgs.vimix-cursor-theme}/share/icons/Vimix-Cursors";
|
||||
|
||||
# Get details about theme package
|
||||
#cd $(nix build nixpkgs#kanagawa-gtk-theme --print-out-paths --no-link) && nix run nixpkgs#eza -- --tree --level 4
|
||||
gtk.theme.package = pkgs.kanagawa-gtk-theme;
|
||||
|
||||
gtk.cursorTheme = {
|
||||
name = "Vimix-Cursors";
|
||||
package = pkgs.vimix-cursor-theme;
|
||||
};
|
||||
|
||||
gtk.theme.name = "Kanagawa-B";
|
||||
|
||||
gtk.iconTheme.package = pkgs.kanagawa-icon-theme;
|
||||
|
|
Loading…
Reference in New Issue