1
1
mirror of https://github.com/LnL7/nix-darwin.git synced 2024-09-11 12:49:18 +03:00

Add option to sort folders first in Finder

This change adds com.apple.finder _FXSortFoldersFirst to
system.defaults.finder, which keeps folders on top when sorting by name
in Finder.
This commit is contained in:
Alex James 2023-01-08 23:09:03 -06:00
parent 3db1d870b0
commit 589e50e3d7
No known key found for this signature in database
GPG Key ID: 2811C5BA55DA7094

View File

@ -80,6 +80,14 @@ with lib;
'';
};
system.defaults.finder._FXSortFoldersFirst = mkOption {
type = types.nullOr types.bool;
default = null;
description = ''
Whether to keep folders on top when sorting by name. The default is false.
'';
};
system.defaults.finder.FXEnableExtensionChangeWarning = mkOption {
type = types.nullOr types.bool;
default = null;