diff --git a/index.html b/index.html index a03afbb5..5225ab5a 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,6 @@ -
ca.desrt.dconf
?+
ca.desrt.dconf
?This manual will eventually describe how to install, use, and extend Home Manager.
diff --git a/options.html b/options.html index 225d58fe..5707f901 100644 --- a/options.html +++ b/options.html @@ -8095,6 +8095,37 @@ for an example configuration. }
Declared by:
<home-manager/modules/services/fnott.nix>
+ |
services.fusuma.enable
Whether to enable the fusuma systemd service to automatically enable touchpad gesture.
Type: boolean
Default: false
Example: true
Declared by:
+ <home-manager/modules/services/fusuma.nix>
+ |
services.fusuma.package
Package providing fusuma.
Type: package
Default: pkgs.fusuma
Declared by:
+ <home-manager/modules/services/fusuma.nix>
+ |
services.fusuma.extraPackages
Extra packages needs to bring to the scope of fusuma service. +
Type: list of packages
Default: pkgs.coreutils
Example:
with pkgs; [ coreutils xdotool ]; +
Declared by:
+ <home-manager/modules/services/fusuma.nix>
+ |
services.fusuma.settings
YAML config that will override the default fusuma configuration. +
Type: YAML value
Example:
{ + enable = true; + extraPackages = with pkgs;[ xdotool ]; + config = { + threshold = { + swipe = 0.1; + }; + interval = { + swipe = 0.7; + }; + swipe = { + "3" = { + left = { + # GNOME: Switch to left workspace + command = "xdotool key ctrl+alt+Right"; + }; + }; + }; + }; +}; +
Declared by:
+ <home-manager/modules/services/fusuma.nix>
|
services.gammastep.enable
Whether to enable Gammastep.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/redshift-gammastep/gammastep.nix>
|
services.gammastep.package
Gammastep derivation to use. diff --git a/tools.html b/tools.html index 68607b71..edaf09be 100644 --- a/tools.html +++ b/tools.html @@ -1,6 +1,6 @@ -
home-manager +
home-manager — reconfigure a user environment
home-manager
{
build
|
@@ -84,7 +84,7 @@
|
--verbose
}
- ]
This command updates the user environment so that it corresponds to the
configuration specified in ~/.config/nixpkgs/home.nix
or ~/.config/nixpkgs/flake.nix
.
@@ -153,7 +153,7 @@ available for immediate garbage collection.
-
The tool accepts the options
-A attrPath
@@ -265,15 +265,15 @@
--verbose
Activates verbose output. -