mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-06 16:57:08 +00:00
41 lines
1 KiB
Nix
41 lines
1 KiB
Nix
{ config, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
options = {
|
|
|
|
system.defaults.finder.AppleShowAllExtensions = mkOption {
|
|
type = types.nullOr types.bool;
|
|
default = null;
|
|
description = ''
|
|
Whether to always show file extensions. The default is false.
|
|
'';
|
|
};
|
|
|
|
system.defaults.finder.QuitMenuItem = mkOption {
|
|
type = types.nullOr types.bool;
|
|
default = null;
|
|
description = ''
|
|
Whether to allow quitting of the Finder. The default is false.
|
|
'';
|
|
};
|
|
|
|
system.defaults.finder._FXShowPosixPathInTitle = mkOption {
|
|
type = types.nullOr types.bool;
|
|
default = null;
|
|
description = ''
|
|
Whether to show the full POSIX filepath in the window title. The default is false.
|
|
'';
|
|
};
|
|
|
|
system.defaults.finder.FXEnableExtensionChangeWarning = mkOption {
|
|
type = types.nullOr types.bool;
|
|
default = null;
|
|
description = ''
|
|
Whether to show warnings when change the file extension of files. The default is true.
|
|
'';
|
|
};
|
|
|
|
};
|
|
}
|