summaryrefslogtreecommitdiff
path: root/modules/system
diff options
context:
space:
mode:
authorNiklas Ravnsborg <niklasravnsborg@gmail.com>2024-09-04 23:04:29 +0200
committerNiklas Ravnsborg <niklasravnsborg@gmail.com>2024-09-16 10:54:05 +0200
commit3d48a9893a12929d48f3ca4279fcfb8a8d4aac96 (patch)
tree1d3e773ee1b70d78f3d3d9280b67421635917fc7 /modules/system
parent3b087efcbdb72f89e0c80a3ebdf4e091b7a48e41 (diff)
add `finder._FXSortFoldersFirst` option
Diffstat (limited to 'modules/system')
-rw-r--r--modules/system/defaults/finder.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/defaults/finder.nix b/modules/system/defaults/finder.nix
index 478639f..1da93c0 100644
--- a/modules/system/defaults/finder.nix
+++ b/modules/system/defaults/finder.nix
@@ -80,6 +80,14 @@ with lib;
'';
};
+ system.defaults.finder._FXSortFoldersFirst = mkOption {
+ type = types.nullOr types.bool;
+ default = null;
+ description = ''
+ Keep folders on top when sorting by name. The default is false.
+ '';
+ };
+
system.defaults.finder.FXEnableExtensionChangeWarning = mkOption {
type = types.nullOr types.bool;
default = null;