diff options
| author | Domen Kožar <domen@dev.si> | 2022-03-25 12:25:08 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-25 12:25:08 +0000 |
| commit | 20813f1df71d638b088b7c3ddd1331521cfa811e (patch) | |
| tree | 09259d65d1a521e003430e47586bbab3452da3c4 /modules/system | |
| parent | 1489a89c74054240cdd2f948e84bd67e5f43866c (diff) | |
| parent | 37e42a9fe4d7460685f3bae8d694ec8a04dcbefe (diff) | |
Merge pull request #446 from dsyang/show-files-always
add option to show hidden files everywhere
Diffstat (limited to 'modules/system')
| -rw-r--r-- | modules/system/defaults/NSGlobalDomain.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/system/defaults/NSGlobalDomain.nix b/modules/system/defaults/NSGlobalDomain.nix index 2d2e54d..5fb329e 100644 --- a/modules/system/defaults/NSGlobalDomain.nix +++ b/modules/system/defaults/NSGlobalDomain.nix @@ -15,6 +15,14 @@ let in { options = { + system.defaults.NSGlobalDomain.AppleShowAllFiles = mkOption { + type = types.nullOr types.bool; + default = null; + description = '' + Whether to always show hidden files. The default is false. + ''; + }; + system.defaults.NSGlobalDomain.AppleEnableMouseSwipeNavigateWithScrolls = mkOption { type = types.nullOr types.bool; default = null; |
