Gnome/nautilus: install and change settings

This commit is contained in:
Toast 2024-09-20 13:15:20 +02:00
parent 99bce3fd14
commit 12f190bbaa
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,15 @@
{pkgs, ...}: {
environment.systemPackages = with pkgs; [
nautilus-python
];
home-manager.users.toast = {
dconf.settings = {
"org/gnome/preferences" = {
date-time-format = "detailed";
show-create-link = true;
show-delete-permanently = true;
};
};
};
}