nixos-conf/machine-confs/nextcloud.nix

18 lines
287 B
Nix
Raw Normal View History

2024-05-29 17:44:21 +03:00
{ config, pkgs, ... }:
{
2024-06-02 05:53:39 +03:00
networking.hostName = "nextcloud";
2024-05-29 17:44:21 +03:00
2024-06-02 05:53:39 +03:00
imports = [
../base.nix
../nextcloud.nix
];
2024-05-29 17:44:21 +03:00
2024-06-02 16:18:19 +03:00
# HARDWARE SPECIFIC
2024-05-29 17:44:21 +03:00
2024-06-02 16:18:19 +03:00
services.qemuGuest.enable = true;
2024-05-29 17:44:21 +03:00
2024-06-02 16:18:19 +03:00
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2024-05-29 17:44:21 +03:00
}