diff options
Diffstat (limited to 'users/seth/shell')
| -rw-r--r-- | users/seth/shell/bash.nix | 1 | ||||
| -rw-r--r-- | users/seth/shell/default.nix | 7 |
2 files changed, 6 insertions, 2 deletions
diff --git a/users/seth/shell/bash.nix b/users/seth/shell/bash.nix index 3be0254..bf5b377 100644 --- a/users/seth/shell/bash.nix +++ b/users/seth/shell/bash.nix @@ -6,6 +6,7 @@ in options.seth.shell.bash = { enable = lib.mkEnableOption "Bash configuration" // { default = config.seth.enable; + defaultText = lib.literalExpression "config.seth.enable"; }; }; diff --git a/users/seth/shell/default.nix b/users/seth/shell/default.nix index bebd790..34b1a98 100644 --- a/users/seth/shell/default.nix +++ b/users/seth/shell/default.nix @@ -4,11 +4,14 @@ let in { options.seth.shell = { - aliases.enable = lib.mkEnableOption "Shell aliases" // { + aliases.enable = lib.mkEnableOption "shell aliases" // { default = config.seth.enable; + defaultText = lib.literalExpression "config.seth.enable"; }; - variables.enable = lib.mkEnableOption "Shell variables" // { + + variables.enable = lib.mkEnableOption "shell variables" // { default = config.seth.enable; + defaultText = lib.literalExpression "config.seth.enable"; }; }; |
