Files
dotfiles/config/home-manager/workstation/dconf.nix
Menno van Leeuwen 1511fc06f7
Some checks failed
Ansible Lint Check / check-ansible (push) Waiting to run
Nix Format Check / check-format (push) Successful in 1m32s
Python Lint Check / check-python (push) Failing after 22s
feat: update Zen browser version to 1.12.3b; change default browser to Firefox in dconf and default apps configuration
2025-05-13 16:40:51 +02:00

89 lines
2.1 KiB
Nix

{ config, pkgs, ... }:
{
# GTK Theme
gtk = {
enable = true;
iconTheme = {
name = "Yaru";
};
theme = {
name = "Yaru-dark";
};
cursorTheme = {
name = "Yaru";
};
gtk3.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme=1
'';
};
gtk4.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme=1
'';
};
};
dconf = {
enable = true;
settings = {
"org/gnome/desktop/background" = {
show-desktop-icons = true;
};
"org/gnome/Ptyxis" = {
use-system-font = false;
font-name = "Hack Nerd Font Mono 13";
};
"org/gnome/desktop/applications/file-manager" = {
exec = "nautilus";
};
"org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
font-name = "Hack Nerd Font 11";
monospace-font-name = "Hack Nerd Font Mono 10";
document-font-name = "Hack Nerd Font 11";
};
# Pinned apps
# add more by listing them with `dconf read /org/gnome/shell/favorite-apps | sed "s/,//g; s/'/\"/g"` then copy pasting the output here
"org/gnome/shell" = {
favorite-apps = [
"firefox.desktop"
"nemo.desktop"
"com.spotify.Client.desktop"
"signal-desktop.desktop"
"whatsapp-desktop-client_whatsapp-desktop-client.desktop"
"telegram-desktop_telegram-desktop.desktop"
"code.desktop"
"vesktop.desktop"
"scrcpy.desktop"
];
};
# GNOME Terminal settings
"org/gnome/Console" = {
use-system-font = false;
custom-font = "Hack Nerd Font 13";
theme = "night";
};
# Set wallpaper
"org/gnome/desktop/background" = {
picture-uri-dark = "file:///usr/share/backgrounds/Ubuntu_Legacy_by_Aaron_J_Prisk_dark.png";
picture-uri = "file:///usr/share/backgrounds/Ubuntu_Legacy_by_Aaron_J_Prisk_light.png";
picture-options = "zoom";
primary-color = "#000000";
};
};
};
}