Prepare for hashicorp vault

This commit is contained in:
TheWanderingCrow 2024-09-21 18:29:48 -04:00
parent c5c1f57cfa
commit 7058185beb
7 changed files with 41 additions and 2 deletions

View file

@ -1,6 +1,7 @@
{config, ...}: {
imports = [
./crow
./vault
];
config.home-manager = {

View file

@ -0,0 +1,5 @@
{lib, config, ...}: {
imports = [
./user.nix
];
}

View file

@ -0,0 +1,7 @@
{ lib, config, ...}: {
config.users.users.vault = lib.mkIf config.users.vault.enable {
isNormalUser = true;
initialPassword = "changeme";
extraGroups = [];
};
}