os/hosts/giggles/configuration.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
746 B
Nix
Raw Normal View History

2022-08-21 22:53:04 +00:00
{
2023-06-12 15:06:55 +00:00
config,
pkgs,
lib,
...
}: {
imports = [
./hardware-configuration.nix
./network.nix
./network-dhcp.nix
./avahi-reflector.nix
./unifi.nix
2023-06-12 15:06:55 +00:00
./home-controller.nix
./home-assistant.nix
./frigate.nix
# ./tang-container.nix
2023-06-12 15:06:55 +00:00
];
2022-08-21 22:53:04 +00:00
boot.loader.timeout = 0;
boot.loader.systemd-boot.enable = lib.mkForce false;
2022-08-21 22:53:04 +00:00
boot.loader.generic-extlinux-compatible.enable = lib.mkForce false;
boot.loader.grub = {
enable = true;
efiSupport = true;
efiInstallAsRemovable = true;
device = "nodev";
};
2023-11-10 14:41:48 +00:00
boot.plymouth.enable = lib.mkForce false;
pub-solar.nextcloud.enable = lib.mkForce false;
2022-08-21 22:53:04 +00:00
time.timeZone = "Europe/Berlin";
system.stateVersion = "22.11"; # Did you read the comment?
}