mirror of https://gitlab.crans.org/nounous/nixos
22 lines
364 B
Nix
22 lines
364 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./networking.nix
|
|
|
|
../../../modules
|
|
../../../modules/services/nextcloud.nix
|
|
];
|
|
|
|
networking.hostName = "nextcloud";
|
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
|
|
|
fileSystems."/home-adh" = {
|
|
device = "172.16.4.2:/pool/home";
|
|
fsType = "nfs";
|
|
};
|
|
|
|
system.stateVersion = "25.05";
|
|
}
|