This commit is contained in:
2026-02-08 23:23:18 +00:00
parent 0d3c5c559f
commit 1b80778422
6 changed files with 77 additions and 54 deletions

View File

@@ -1,11 +1,26 @@
{ den, __findFile, ... }:
{
den,
__findFile,
modules,
...
}:
{
# The single rpi5 i have running on the side of my desk
den.aspects.doloro-server = {
includes = [ <modules/publicKeys/doloro> ];
};
den.hosts.aarch64-linux.rpi5 = {
includes = [ ];
users.doloro = {
includes = [ <modules/user/groups> ];
includes = [
<modules/user/groups>
<modules/publicKeys/doloro>
];
aspect = "doloro-server";
};
users.root = {
includes = [ <modules/publicKeys/doloro> ];
};
};
}