diff options
Diffstat (limited to 'options.nix')
| -rw-r--r-- | options.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/options.nix b/options.nix index 616b24cf..578c7fd3 100644 --- a/options.nix +++ b/options.nix @@ -26,6 +26,17 @@ in ''; }; + home-manager = mkOption { + type = + let + inherit (types) functionTo attrsOf anything; + in + functionTo (functionTo (attrsOf anything)); + description = '' + Target user shared home-manager configuration. + ''; + }; + apps = mkOption { type = let @@ -50,6 +61,8 @@ in ''; }; + verbose = mkEnableOption "launchers with verbose output"; + id = mkOption { type = nullOr str; default = null; |
