Remove bluetooth/printing and update vaultwarden config

This commit is contained in:
Jacob Hinkle 2022-10-13 09:03:02 -04:00
parent 947dc6fbd5
commit 3b2c0d88ff

View File

@ -79,11 +79,6 @@
#package = pkgs.pulseaudioFull; #package = pkgs.pulseaudioFull;
#}; #};
hardware.bluetooth.enable = false; hardware.bluetooth.enable = false;
services.blueman.enable = false;
# Enable CUPS to print documents.
services.printing.enable = false;
# Enable sound. # Enable sound.
sound.enable = false; sound.enable = false;
@ -160,9 +155,11 @@
vaultwarden = { vaultwarden = {
enable = true; enable = true;
config = { config = { # https://github.com/dani-garcia/vaultwarden/blob/1.25.2/.env.template
domain = "http://pedro:8081"; DOMAIN = "https://vault.jhink.org";
signupsAllowed = true; ROCKET_ADDRESS = "0.0.0.0";
ROCKET_PORT = 8222;
SIGNUPS_ALLOWED = true;
}; };
}; };