17 lines
287 B
Nix
17 lines
287 B
Nix
{ 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;
|
|
}
|