mirror of https://gitlab.crans.org/nounous/nixos
25 lines
345 B
Nix
25 lines
345 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./element.nix
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
networking.hostName = "periodique";
|
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
|
|
|
crans = {
|
|
enable = true;
|
|
|
|
networking = {
|
|
id = "18";
|
|
srvNat.enable = true;
|
|
};
|
|
|
|
resticClient.when = "02:56";
|
|
};
|
|
|
|
system.stateVersion = "24.11";
|
|
}
|