aboutsummaryrefslogtreecommitdiff
path: root/lib/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'lib/default.nix')
-rw-r--r--lib/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/default.nix b/lib/default.nix
index aa55942..bb1c30f 100644
--- a/lib/default.nix
+++ b/lib/default.nix
@@ -34,11 +34,12 @@
, system
, hostname
, isDesktop ? false
+ , isTrusted ? false
}:
inputs.home-manager.lib.homeManagerConfiguration {
inherit username system;
extraSpecialArgs = {
- inherit system hostname isDesktop;
+ inherit system hostname isDesktop isTrusted;
};
homeDirectory = "/home/${username}";
configuration = ../users/${username};