mirror of
https://github.com/JaxTheWolf/nixos.git
synced 2026-04-01 02:00:22 +02:00
Implement home-manager
This commit is contained in:
31
common/modules/home/dconf/apps.nix
Normal file
31
common/modules/home/dconf/apps.nix
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user