dotfiles/nixos/machines/biskcomp.nix

37 lines
796 B
Nix
Raw Normal View History

{
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-08-03 21:26:28 -06:00
../syncthing.nix
2023-08-01 17:47:16 -06:00
# ../desktop.nix
# ../xmonad.nix
];
2023-06-17 12:16:47 -06:00
services.xrdp.enable = true;
services.xrdp.defaultWindowManager = "startplasma-x11";
networking.firewall.allowedTCPPorts = [ 3389 ];
2023-08-01 17:47:16 -06:00
fileSystems."/" = {
device = "/dev/disk/by-label/NIXOS_SD";
2023-08-01 17:47:16 -06:00
fsType = "ext4";
};
2023-06-17 12:16:47 -06:00
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";
system.stateVersion = "23.11";
}