Add config for nextcloud host

This commit is contained in:
Vili Sinervä 2024-05-29 17:44:21 +03:00
parent cf50402203
commit cae86e2cf2
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996

View file

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