docs: Update inline code docs for LSP help
All checks were successful
CI / Format Check (push) Successful in 2s
CI / Flake Check (push) Successful in 1m39s
CI / Evaluate Key Configurations (nix-builder) (push) Successful in 8s
CI / Evaluate Key Configurations (nix-desktop1) (push) Successful in 7s
CI / Evaluate Key Configurations (nix-laptop1) (push) Successful in 7s
CI / Evaluate Artifacts (installer-iso-nix-laptop1) (push) Successful in 14s
CI / Evaluate Artifacts (lxc-nix-builder) (push) Successful in 8s
CI / Build and Publish Documentation (push) Successful in 5s
All checks were successful
CI / Format Check (push) Successful in 2s
CI / Flake Check (push) Successful in 1m39s
CI / Evaluate Key Configurations (nix-builder) (push) Successful in 8s
CI / Evaluate Key Configurations (nix-desktop1) (push) Successful in 7s
CI / Evaluate Key Configurations (nix-laptop1) (push) Successful in 7s
CI / Evaluate Artifacts (installer-iso-nix-laptop1) (push) Successful in 14s
CI / Evaluate Artifacts (lxc-nix-builder) (push) Successful in 8s
CI / Build and Publish Documentation (push) Successful in 5s
This commit is contained in:
@@ -37,8 +37,11 @@ in
|
||||
];
|
||||
|
||||
options.athenix.sw = {
|
||||
# Software submodule for the Athenix system suite. sw.enable enables
|
||||
# base packages and common configuration. Each sw.<type>.enable enables
|
||||
# additional packages and services for that system type.
|
||||
enable = mkOption {
|
||||
type = types.bool;
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
description = ''
|
||||
Enable standard workstation configuration with base packages.
|
||||
@@ -53,17 +56,18 @@ in
|
||||
'';
|
||||
};
|
||||
|
||||
# DEPRECATED: Backwards compatibility for external modules
|
||||
# Use athenix.sw.<type>.enable instead
|
||||
type = mkOption {
|
||||
type = types.nullOr (types.either types.str (types.listOf types.str));
|
||||
# DEPRECATED: Backwards compatibility for external modules
|
||||
# Use athenix.sw.<type>.enable instead
|
||||
type = lib.types.nullOr (lib.types.either lib.types.str (lib.types.listOf lib.types.str));
|
||||
default = null;
|
||||
description = "DEPRECATED: Use athenix.sw.<type>.enable instead. Legacy type selection.";
|
||||
visible = false;
|
||||
};
|
||||
|
||||
extraPackages = mkOption {
|
||||
type = types.listOf types.package;
|
||||
# Additional packages to install beyond the defaults
|
||||
type = lib.types.listOf lib.types.package;
|
||||
default = [ ];
|
||||
description = ''
|
||||
Additional system packages to install beyond the defaults.
|
||||
@@ -73,7 +77,8 @@ in
|
||||
};
|
||||
|
||||
excludePackages = mkOption {
|
||||
type = types.listOf types.package;
|
||||
# Packages to exclude from the default package list
|
||||
type = lib.types.listOf lib.types.package;
|
||||
default = [ ];
|
||||
description = ''
|
||||
Packages to exclude from the default package list.
|
||||
|
||||
Reference in New Issue
Block a user