dotfiles/nixos/machines/biskcomp.nix

51 lines
963 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-03 21:28:38 -06:00
../desktop.nix
../code.nix
# ../xmonad.nix
];
2023-08-03 21:28:38 -06:00
services.plex = {
enable = true;
};
2023-06-17 12:16:47 -06:00
2023-08-04 02:14:31 -06:00
services.gitea = {
enable = true;
lfs.enable = true;
2023-08-04 22:00:44 -06:00
settings.server = {
DOMAIN = "1896Folsom.duckdns.org";
SSH_PORT = 1123;
};
2023-08-04 02:14:31 -06:00
};
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 = {};
};
};
2023-08-05 17:13:32 -06:00
swapDevices = [
{ device = "/swapfile"; size = 8192; } # size is in MiB
];
networking.hostName = "biskcomp";
system.stateVersion = "23.11";
}