nixos-conf/machine-confs/nextcloud.nix

12 lines
189 B
Nix

{ config, pkgs, ... }:
{
networking.hostName = "nextcloud";
imports = [
../base.nix
../services/nextcloud.nix
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
}