2021-07-10 13:39:40 -06:00
|
|
|
{
|
|
|
|
imports = [
|
2021-07-11 11:23:59 -06:00
|
|
|
../internet-computer.nix
|
|
|
|
../raspberry-pi.nix
|
2023-07-12 17:34:07 -06:00
|
|
|
../base.nix
|
2023-07-12 17:29:01 -06:00
|
|
|
../desktop.nix
|
|
|
|
../xmonad.nix
|
|
|
|
../code.nix
|
2021-07-10 13:39:40 -06:00
|
|
|
];
|
|
|
|
|
2023-06-17 12:16:47 -06:00
|
|
|
services.xrdp.enable = true;
|
|
|
|
services.xrdp.defaultWindowManager = "startplasma-x11";
|
|
|
|
networking.firewall.allowedTCPPorts = [ 3389 ];
|
|
|
|
|
|
|
|
services.home-assistant = {
|
|
|
|
enable = true;
|
|
|
|
extraComponents = [
|
|
|
|
# Components required to complete the onboarding
|
|
|
|
"met"
|
|
|
|
"radio_browser"
|
|
|
|
];
|
|
|
|
config = {
|
|
|
|
# Includes dependencies for a basic setup
|
|
|
|
# https://www.home-assistant.io/integrations/default_config/
|
|
|
|
default_config = {};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-07-10 13:39:40 -06:00
|
|
|
networking.hostName = "biskcomp";
|
2021-07-10 17:11:41 -06:00
|
|
|
|
|
|
|
system.stateVersion = "21.05";
|
2021-07-10 13:39:40 -06:00
|
|
|
}
|