dotfiles/nixos/machines/biskcomp.nix

31 lines
682 B
Nix
Raw Normal View History

{
imports = [
2021-07-11 11:23:59 -06:00
../internet-computer.nix
../raspberry-pi.nix
2021-07-25 16:03:59 -06:00
../base.nix
];
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 = {};
};
};
networking.hostName = "biskcomp";
2023-06-17 12:16:47 -06:00
# hardware.video.hidpi.enable = true;
system.stateVersion = "21.05";
}