1
1
Fork 0
nixos/profiles/sbc/default.nix
Myned 6fa9b974ec
ghostty: add minimal option for terminfo
Signed-off-by: Myned <dev@bjork.tech>
2025-01-10 16:00:21 -06:00

42 lines
735 B
Nix

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