added more hass config

This commit is contained in:
Leyla Becker 2024-10-14 19:21:07 -05:00
parent abede83bfa
commit b2ee04dce5
2 changed files with 25 additions and 8 deletions

View file

@ -1,4 +1,8 @@
{pkgs, ...}: {
{
pkgs,
lib,
...
}: {
imports = [
../../users
];
@ -76,6 +80,12 @@
group = "pihole";
isSystemUser = true;
};
hass = {
uid = lib.mkForce 2004;
group = "hass";
isSystemUser = true;
};
};
groups = {
@ -118,6 +128,11 @@
gid = 2003;
members = ["pihole" "leyla"];
};
hass = {
gid = lib.mkForce 2004;
members = ["hass" "leyla"];
};
};
};