Add default settings for gnome apps

This commit is contained in:
Alexander Bantyev 2020-12-30 18:14:56 +03:00
parent 1798adb555
commit b42275d2fc
Signed by: balsoft
GPG Key ID: E081FF12ADCB4AD5
2 changed files with 44 additions and 1 deletions

View File

@ -59,7 +59,10 @@ in {
*, html, body, body.plain div, body.plain a, body.plain p, body.plain span {
background: ${config.themes.colors .bg} !important;
color: ${config.themes.colors.fg} !important;
font: 16px 'IBM Plex Mono', monospace;
font-family: 'IBM Plex Mono', monospace !important;
}
*, html, body {
font-size: 16px;
}
'';
xdg.configFile."geary/account_03/geary.ini".text = lib.generators.toGitINI gearyConfig;

View File

@ -11,5 +11,45 @@
services.gvfs.enable = true;
home-manager.users.balsoft = {
xdg.userDirs.enable = true;
dconf.settings = {
"org/gnome/nautilus/icon-view" = {
captions = [ "size" "date_modified" "none" ];
};
"org/gnome/nautilus/list-view" = {
default-column-order = [
"name"
"size"
"type"
"owner"
"group"
"permissions"
"where"
"date_modified"
"date_modified_with_time"
"date_accessed"
"recency"
"starred"
"detailed_type"
];
default-visible-columns = [ "name" "size" "date_modified" "starred" ];
};
"org/gnome/nautilus/preferences" = {
default-folder-viewer = "list-view";
executable-text-activation = "display";
search-filter-time-type = "last_modified";
search-view = "list-view";
show-image-thumbnails = "always";
thumbnail-limit = 10;
};
"org/gnome/evince/default" = {
inverted-colors = true;
};
"org/gnome/maps" = {
night-mode = true;
transportation-type = "car";
};
};
};
}