WIP: vaultwarden
This commit is contained in:
parent
6258dfac17
commit
199db5b3bc
2 changed files with 43 additions and 0 deletions
35
hosts/vaultwarden/default.nix
Normal file
35
hosts/vaultwarden/default.nix
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
{
|
||||
my = {
|
||||
utils.commons.enable = true;
|
||||
services.vaultwarden = {
|
||||
enable = true;
|
||||
proxy.domain = "tegola.pro";
|
||||
};
|
||||
virtualisation.proxmox.enable = true;
|
||||
};
|
||||
|
||||
time.timeZone = "Europe/Rome";
|
||||
|
||||
# Extra packages
|
||||
environment.systemPackages = with pkgs; [ ];
|
||||
|
||||
services = {
|
||||
openssh.enable = true;
|
||||
};
|
||||
|
||||
networking = {
|
||||
firewall.allowedTCPPorts = [
|
||||
80
|
||||
443
|
||||
];
|
||||
nameservers = [ "192.168.1.2" ];
|
||||
};
|
||||
|
||||
system.stateVersion = "24.11";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue