39 lines
746 B
Nix
39 lines
746 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./network.nix
|
|
./network-dhcp.nix
|
|
./avahi-reflector.nix
|
|
./unifi.nix
|
|
|
|
./home-controller.nix
|
|
./home-assistant.nix
|
|
|
|
./frigate.nix
|
|
|
|
# ./tang-container.nix
|
|
];
|
|
|
|
boot.loader.timeout = 0;
|
|
boot.loader.systemd-boot.enable = lib.mkForce false;
|
|
boot.loader.generic-extlinux-compatible.enable = lib.mkForce false;
|
|
boot.loader.grub = {
|
|
enable = true;
|
|
efiSupport = true;
|
|
efiInstallAsRemovable = true;
|
|
device = "nodev";
|
|
};
|
|
|
|
boot.plymouth.enable = lib.mkForce false;
|
|
pub-solar.nextcloud.enable = lib.mkForce false;
|
|
|
|
time.timeZone = "Europe/Berlin";
|
|
|
|
system.stateVersion = "22.11"; # Did you read the comment?
|
|
}
|