1
1
Fork 0
nixos/profiles/sbc/default.nix
Myned 0fe3308ef6
nix: move settings.containers to top-level custom
Signed-off-by: Myned <dev@bjork.tech>
2024-10-06 10:16:52 -05:00

38 lines
647 B
Nix

{
custom = {
profile = "sbc";
programs.fastfetch.greet = true;
containers = {
enable = true;
boot = true;
homeassistant.enable = true;
};
services = {
tailscale.cert = true;
borgmatic = {
enable = true;
sources = ["/containers"];
repositories = [
{
path = "ssh://h1m9k594@h1m9k594.repo.borgbase.com/./repo";
label = "mypi3";
}
];
};
# netdata = {
# enable = true;
# child = true;
# };
};
settings = {
boot.u-boot = true;
networking.wifi = true;
};
};
}