Gnome/nautilus: install and change settings
This commit is contained in:
parent
99bce3fd14
commit
12f190bbaa
2 changed files with 16 additions and 0 deletions
|
|
@ -2,6 +2,7 @@
|
|||
imports = [
|
||||
./blackbox.nix
|
||||
./firefox.nix
|
||||
./nautilus.nix
|
||||
];
|
||||
environment.systemPackages = with pkgs; [
|
||||
gnome-tweaks
|
||||
|
|
|
|||
15
roles/gnome/programs/nautilus.nix
Normal file
15
roles/gnome/programs/nautilus.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue