nixos-conf/machine-confs/vaultwarden.nix

12 lines
193 B
Nix

{ config, pkgs, ... }:
{
networking.hostName = "vaultwarden";
imports = [
../base.nix
../services/vaultwarden.nix
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
}