This commit is contained in:
2026-02-10 21:40:01 +00:00
parent 1b80778422
commit 5340ec1756
4 changed files with 58 additions and 19 deletions

View File

@@ -9,19 +9,9 @@
includes = [
<modules/raspberry-pi/5>
<modules/services/traefik>
<modules/services/home-assistant>
];
nixos = {
users.users = {
doloro = {
isNormalUser = true;
extraGroups = [
"wheel"
"docker"
];
initialPassword = "meowmeowmeow";
};
};
networking.hostName = "nixos-001-rp5";
networking.firewall = {

View File

@@ -6,20 +6,34 @@
}:
{
# The single rpi5 i have running on the side of my desk
den.aspects.doloro-server = {
includes = [ <modules/publicKeys/doloro> ];
den.aspects = {
doloro-server = {
includes = [
<modules/publicKeys/doloro>
];
nixos = {
users.users.doloro = {
isNormalUser = true;
extraGroups = [
"wheel"
"networkmanager"
];
};
};
};
root-server = {
includes = [
<modules/publicKeys/doloro>
];
};
};
den.hosts.aarch64-linux.rpi5 = {
includes = [ ];
users.doloro = {
includes = [
<modules/user/groups>
<modules/publicKeys/doloro>
];
aspect = "doloro-server";
};
users.root = {
includes = [ <modules/publicKeys/doloro> ];
aspect = "root-server";
};
};