mirror of https://gitlab.crans.org/nounous/nixos
25 lines
346 B
Nix
25 lines
346 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./collabora.nix
|
|
];
|
|
|
|
networking.hostName = "collabora";
|
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
|
|
|
crans = {
|
|
enable = true;
|
|
|
|
networking = {
|
|
id = "49";
|
|
srvNat.enable = true;
|
|
};
|
|
|
|
resticClient.enable = false;
|
|
};
|
|
|
|
system.stateVersion = "25.09";
|
|
}
|