Files

28 lines
738 B
Nix
Raw Permalink Normal View History

2026-03-23 21:24:20 +01:00
{lib, ...}: {
2026-03-01 08:19:46 +01:00
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
2026-03-23 21:24:20 +01:00
autoconnect = ["qemu:///system"];
uris = ["qemu:///system"];
2026-03-01 08:19:46 +01:00
};
"org/gnome/Console" = {
2026-03-02 12:58:21 +01:00
custom-font = lib.mkDefault "FiraCode Nerd Font 11";
2026-03-01 08:19:46 +01:00
use-system-font = false;
};
"org/gnome/TextEditor" = {
2026-03-02 12:58:21 +01:00
custom-font = lib.mkDefault "Fira Code Nerd Font weight=450 11";
2026-03-01 08:19:46 +01:00
use-system-font = false;
};
"org/gnome/nautilus/preferences" = {
default-folder-viewer = "icon-view";
migrated-gtk-settings = true;
recursive-search = "always";
search-filter-time-type = "last_modified";
show-directory-item-counts = "always";
show-image-thumbnails = "always";
};
};
}