nixos-conf/machine-confs/nextcloud.nix

13 lines
175 B
Nix
Raw Normal View History

{ ... }:
2024-05-29 17:44:21 +03:00
{
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
2024-06-06 16:53:15 +03:00
../services/nextcloud.nix
2024-06-02 05:53:39 +03:00
];
2024-05-29 17:44:21 +03:00
2024-06-02 16:18:19 +03:00
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
2024-05-29 17:44:21 +03:00
}