mirror of https://gitlab.crans.org/nounous/nixos
25 lines
350 B
Nix
25 lines
350 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./vaultwarden.nix
|
|
];
|
|
|
|
networking.hostName = "vaultwarden";
|
|
boot.loader.grub.devices = [ "/dev/sda" ];
|
|
|
|
crans = {
|
|
enable = true;
|
|
|
|
networking = {
|
|
id = "59";
|
|
srvNat.enable = true;
|
|
};
|
|
|
|
resticClient.when = "04:44";
|
|
};
|
|
|
|
system.stateVersion = "24.05";
|
|
}
|