diff --git a/cli/git.nix b/cli/git.nix index b50c473..7e0f58b 100644 --- a/cli/git.nix +++ b/cli/git.nix @@ -13,11 +13,8 @@ in options.nixowos.cli.${name} = { enable = lib.mkEnableOption name; - delta.enable = lib.mkOption { + delta.enable = lib.mkEnableOption "delta within git" // { default = true; - example = false; - description = "Whether to enable delta within git."; - type = lib.types.bool; }; }; diff --git a/graphical/mpv.nix b/graphical/mpv.nix index 1195f2e..4a67380 100644 --- a/graphical/mpv.nix +++ b/graphical/mpv.nix @@ -15,11 +15,9 @@ in package = lib.mkPackageOption pkgs name { }; - useFullFFmpeg = lib.mkOption { - type = lib.types.bool; - default = false; + useFullFFmpeg = lib.mkEnableOption "ffmpeg-full within mpv" // { description = '' - Use pkgs.ffmpeg-full within mpv, for more media support. + Whether to use pkgs.ffmpeg-full within mpv, for more media support. For instance, this makes jxl viewing and screenshots possible. However, this will (almost certainly) require a local compilation of mpv diff --git a/graphical/plasma.nix b/graphical/plasma.nix index 5a2af8c..0ac68cf 100644 --- a/graphical/plasma.nix +++ b/graphical/plasma.nix @@ -13,9 +13,7 @@ in options.nixowos.graphical.${name} = { enable = lib.mkEnableOption name; - startOnFirstTTY = lib.mkOption { - type = lib.types.bool; - default = false; + startOnFirstTTY = lib.mkEnableOption "starting plasma from tty1" // { description = '' Whether to start ${name} automatically from tty1.