diff --git a/index.html b/index.html index 7e4ea7092..9b573637a 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 ae006cc57..2dc337531 100644 --- a/options.html +++ b/options.html @@ -2849,17 +2849,12 @@ for supported values.
Declared by:
<home-manager/modules/programs/hexchat.nix>
|
programs.hexchat.themeTheme package for HexChat. Expects a derivation containing decompressed
-theme files. .hct file format requires unzip
-decompression, as seen in example.
-
Type: null or package
Default: null
Example:
stdenv.mkDerivation rec {
- name = "hexchat-theme-MatriY";
- buildInputs = [ pkgs.unzip ];
- src = fetchurl {
- url = "https://dl.hexchat.net/themes/MatriY.hct";
- sha256 = "sha256-ffkFJvySfl0Hwja3y7XCiNJceUrGvlEoEm97eYNMTZc=";
- };
- unpackPhase = "unzip ${src}";
- installPhase = "cp -r . $out";
+theme files. Note, .hct files are actually ZIP files,
+as seen in example.
+Type: null or package
Default: null
Example:
source = pkgs.fetchzip {
+ url = "https://dl.hexchat.net/themes/Monokai.hct#Monokai.zip";
+ sha256 = "sha256-WCdgEr8PwKSZvBMs0fN7E2gOjNM0c2DscZGSKSmdID0=";
+ stripRoot = false;
};
Declared by: