mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-03-31 17:50:23 +02:00
28 lines
738 B
Nix
28 lines
738 B
Nix
{lib, ...}: {
|
|
dconf.settings = {
|
|
"org/virt-manager/virt-manager/connections" = {
|
|
autoconnect = ["qemu:///system"];
|
|
uris = ["qemu:///system"];
|
|
};
|
|
|
|
"org/gnome/Console" = {
|
|
custom-font = lib.mkDefault "FiraCode Nerd Font 11";
|
|
use-system-font = false;
|
|
};
|
|
|
|
"org/gnome/TextEditor" = {
|
|
custom-font = lib.mkDefault "Fira Code Nerd Font 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";
|
|
};
|
|
};
|
|
}
|