diff --git a/index.html b/index.html index a03afbb51..5225ab5aa 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 225d58fe1..5707f9016 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.enableWhether 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.packagePackage providing fusuma.
Type: package
Default: pkgs.fusuma
Declared by:
+ <home-manager/modules/services/fusuma.nix>
+ |
services.fusuma.extraPackagesExtra 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.settingsYAML 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.enableWhether to enable Gammastep.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/services/redshift-gammastep/gammastep.nix>
|
services.gammastep.packageGammastep derivation to use. diff --git a/tools.html b/tools.html index 68607b71a..edaf09be7 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. -