diff --git a/machine-confs/nextcloud.nix b/machine-confs/nextcloud.nix new file mode 100644 index 0000000..b222b31 --- /dev/null +++ b/machine-confs/nextcloud.nix @@ -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; +}