summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/system/defaults-write.nix1
-rw-r--r--modules/system/defaults/dock.nix118
2 files changed, 110 insertions, 9 deletions
diff --git a/modules/system/defaults-write.nix b/modules/system/defaults-write.nix
index 7a5eba4..cf0a10a 100644
--- a/modules/system/defaults-write.nix
+++ b/modules/system/defaults-write.nix
@@ -12,6 +12,7 @@ let
if isBool value then "-bool ${boolValue value}" else
if isInt value then "-int ${toString value}" else
if isString value then "-string '${value}'" else
+ if isAttrs value then "-${value.type} '${value.value}'" else
throw "invalid value type";
writeDefault = domain: key: value:
diff --git a/modules/system/defaults/dock.nix b/modules/system/defaults/dock.nix
index 5795bcd..1fd97c3 100644
--- a/modules/system/defaults/dock.nix
+++ b/modules/system/defaults/dock.nix
@@ -13,27 +13,79 @@ with lib;
'';
};
- system.defaults.dock.orientation = mkOption {
- type = types.nullOr (types.enum [ "bottom" "left" "right" ]);
+ system.defaults.dock.autohide-delay = mkOption {
+ type = types.nullOr types.attrs;
default = null;
+ example = {
+ type = "float";
+ value = "0.24";
+ };
description = ''
- Position of the dock on screen. The default is "bottom".
+ Sets the speed of the autohide delay. The default is given in the example.
'';
};
- system.defaults.dock.showhidden = mkOption {
+ system.defaults.dock.autohide-time-modifier = mkOption {
+ type = types.nullOr types.attrs;
+ default = null;
+ example = {
+ type = "float";
+ value = "1.0";
+ };
+ description = ''
+ Sets the speed of the animation when hiding/showing the Dock. The default is given in the example.
+ '';
+ };
+
+ system.defaults.dock.dashboard-in-overlay = mkOption {
type = types.nullOr types.bool;
default = null;
description = ''
- Whether to make icons of hidden applications tranclucent. The default is false.
+ Whether to hide Dashboard as a Space. The default is false;
'';
};
- system.defaults.dock.tilesize = mkOption {
- type = types.nullOr types.int;
+ system.defaults.dock.enable-spring-load-actions-on-all-items = mkOption {
+ type = types.nullOr types.bool;
default = null;
description = ''
- Size of the icons in the dock. The default is 64.
+ Enable spring loading for all Dock items. The default is false;
+ '';
+ };
+
+ system.defaults.dock.expose-animation-duration = mkOption {
+ type = types.nullOr types.attrs;
+ default = null;
+ example = {
+ type = "float";
+ value = "1.0";
+ };
+ description = ''
+ Sets the speed of the Mission Control animations. The default is given in the example.
+ '';
+ };
+
+ system.defaults.dock.expose-group-by-app = mkOption {
+ type = types.nullOr types.bool;
+ default = null;
+ description = ''
+ Whether to group windows by application in Mission Control's Exposé. The default is true.
+ '';
+ };
+
+ system.defaults.dock.launchanim = mkOption {
+ type = types.nullOr types.bool;
+ default = null;
+ description = ''
+ Animate opening applications from the Dock. The default is true.
+ '';
+ };
+
+ system.defaults.dock.mineffect = mkOption {
+ type = types.nullOr (types.enum [ "genie" "suck" "scale" ]);
+ default = null;
+ description = ''
+ Set the minimize/maximize window effect. The default is genie.
'';
};
@@ -45,6 +97,14 @@ with lib;
'';
};
+ system.defaults.dock.mouse-over-hilite-stack = mkOption {
+ type = types.nullOr types.bool;
+ default = null;
+ description = ''
+ Enable highlight hover effect for the grid view of a stack in the Dock.
+ '';
+ };
+
system.defaults.dock.mru-spaces = mkOption {
type = types.nullOr types.bool;
default = null;
@@ -53,5 +113,45 @@ with lib;
'';
};
- };
+ system.defaults.dock.orientation = mkOption {
+ type = types.nullOr (types.enum [ "bottom" "left" "right" ]);
+ default = null;
+ description = ''
+ Position of the dock on screen. The default is "bottom".
+ '';
+ };
+
+ system.defaults.dock.show-process-indicators = mkOption {
+ type = types.nullOr types.bool;
+ default = null;
+ description = ''
+ Show indicator lights for open applications in the Dock. The default is true.
+ '';
+ };
+
+ system.defaults.dock.showhidden = mkOption {
+ type = types.nullOr types.bool;
+ default = null;
+ description = ''
+ Whether to make icons of hidden applications tranclucent. The default is false.
+ '';
+ };
+
+ system.defaults.dock.static-only = mkOption {
+ type = types.nullOr types.bool;
+ default = null;
+ description = ''
+ Show only open applications in the Dock. The default is false.
+ '';
+ };
+
+ system.defaults.dock.tilesize = mkOption {
+ type = types.nullOr types.int;
+ default = null;
+ description = ''
+ Size of the icons in the dock. The default is 64.
+ '';
+ };
+
+ };
}