nixos-conf/machine-confs/nextcloud.nix

17 lines
296 B
Nix

{ config, pkgs, ... }:
{
networking.hostName = "nextcloud";
imports = [
../base.nix
../services/nextcloud.nix
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}