Skip to content

Commit

Permalink
nixos/secrets: don't manage root user secrets by default
Browse files Browse the repository at this point in the history
  • Loading branch information
getchoo committed Oct 28, 2024
1 parent 8e33ea9 commit 1e04b27
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions modules/nixos/traits/secrets.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ in
options.traits.secrets = {
enable = lib.mkEnableOption "secrets management";

rootUser = lib.mkEnableOption "manage secrets for root user" // {
default = true;
};
rootUser = lib.mkEnableOption "manage secrets for root user";

hostUser = lib.mkEnableOption "manager secrets for host user (see `profiles.server.hostUser`)" // {
default = config.profiles.server.hostUser;
Expand Down

0 comments on commit 1e04b27

Please sign in to comment.