Rename some stuff

This commit is contained in:
TheWanderingCrow 2024-10-04 13:37:26 -04:00
parent 5bbd203d45
commit 2026c5b6e8
11 changed files with 25 additions and 71 deletions

View file

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

View file

@ -1,5 +1,5 @@
{ lib, config, ...}: {
config.users.users.ha = lib.mkIf config.users.ha.enable {
config.users.users.overseer = lib.mkIf config.users.overseer.enable {
isNormalUser = true;
initialPassword = "changeme";
extraGroups = [ "wheel" "libvirtd" ];

View file

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

View file

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