mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 06:39:14 +00:00
vanadium/gtk: init
This commit is contained in:
parent
8edc63f477
commit
ac16353721
3 changed files with 60 additions and 4 deletions
39
nix/configurations/vanadium/home/gtk.nix
Normal file
39
nix/configurations/vanadium/home/gtk.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
pkgs.pantheon.elementary-sound-theme
|
||||
];
|
||||
|
||||
# Note: this would automatically recurse into gtk{2,3,4} settings
|
||||
# In version prior to 25.11 it doesn't do this.
|
||||
gtk.enable = true;
|
||||
gtk = {
|
||||
font = {
|
||||
name = "Ubuntu";
|
||||
package = pkgs.ubuntu-classic;
|
||||
};
|
||||
iconTheme = {
|
||||
name = "Adwaita";
|
||||
package = pkgs.gnome-themes-extra;
|
||||
};
|
||||
theme = {
|
||||
name = "Adwaita";
|
||||
package = pkgs.gnome-themes-extra;
|
||||
};
|
||||
|
||||
# TODO: open an issue, why are the types inconsistent? ew.
|
||||
# TODO: kitty doesn't react to this, which is annoying
|
||||
gtk2.extraConfig = ''
|
||||
gtk-sound-theme-name = "elementary"
|
||||
'';
|
||||
gtk3.extraConfig = {
|
||||
gtk-sound-theme-name = "elementary";
|
||||
};
|
||||
gtk4.extraConfig = {
|
||||
gtk-sound-theme-name = "elementary";
|
||||
};
|
||||
};
|
||||
dconf.settings = {
|
||||
"org/gnome/desktop/sound".theme-name = "elementary";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue