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