nixos-conf/machine-confs/nextcloud.nix

18 lines
273 B
Nix
Raw Normal View History

2024-05-29 17:44:21 +03:00
{ 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;
}