43 lines
695 B
Nix
43 lines
695 B
Nix
{config, ...}: {
|
|
custom = {
|
|
profile = "sbc";
|
|
desktop = "kodi";
|
|
|
|
programs = {
|
|
fastfetch.greet = true;
|
|
};
|
|
|
|
containers = {
|
|
enable = true;
|
|
boot = true;
|
|
homeassistant.enable = true;
|
|
};
|
|
|
|
services = {
|
|
pipewire = {
|
|
enable = true;
|
|
pulseaudio = false;
|
|
system = true;
|
|
};
|
|
|
|
#// tailscale.cert = true;
|
|
|
|
borgmatic = {
|
|
enable = true;
|
|
sources = [config.custom.containers.directory];
|
|
};
|
|
|
|
# netdata = {
|
|
# enable = true;
|
|
# child = true;
|
|
# };
|
|
};
|
|
|
|
settings = {
|
|
networking = {
|
|
networkmanager = true;
|
|
wifi = true;
|
|
};
|
|
};
|
|
};
|
|
}
|