mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-04-01 02:00:22 +02:00
32 lines
709 B
Nix
32 lines
709 B
Nix
{
|
|
...
|
|
}:
|
|
|
|
{
|
|
dconf.settings = {
|
|
"org/virt-manager/virt-manager/connections" = {
|
|
autoconnect = [ "qemu:///system" ];
|
|
uris = [ "qemu:///system" ];
|
|
};
|
|
|
|
"org/gnome/Console" = {
|
|
custom-font = "FiraCode Nerd Font Mono 10";
|
|
use-system-font = false;
|
|
};
|
|
|
|
"org/gnome/TextEditor" = {
|
|
custom-font = "Fira Code weight=450 11";
|
|
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";
|
|
};
|
|
};
|
|
}
|