mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-21 19:52:52 +00:00
add gtk theme
This commit is contained in:
parent
ecbe664521
commit
64ab66c238
1 changed files with 22 additions and 1 deletions
|
@ -10,12 +10,33 @@
|
|||
config = lib.mkIf config.gnome-utils.enable {
|
||||
home.packages =
|
||||
(with pkgs; [
|
||||
gnome.gnome-tweaks
|
||||
gnome-extension-manager
|
||||
gtk-engine-murrine
|
||||
])
|
||||
++ (with pkgs.gnome; [
|
||||
gnome-tweaks
|
||||
gnome-themes-extra
|
||||
])
|
||||
++ (with pkgs.gnomeExtensions; [
|
||||
user-themes
|
||||
blur-my-shell
|
||||
]);
|
||||
gtk = {
|
||||
enable = true;
|
||||
iconTheme = {
|
||||
package = pkgs.tela-icon-theme;
|
||||
name = "Tela-green";
|
||||
};
|
||||
theme = {
|
||||
package = pkgs.orchis-theme.overrideAttrs {
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
bash install.sh -d $out/share/themes -t all -c dark -l --tweaks macos --tweaks solid
|
||||
runHook postInstall
|
||||
'';
|
||||
};
|
||||
name = "Orchis-Green-Dark";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue