nixos-conf/machine-confs/vaultwarden.nix

17 lines
277 B
Nix

{ config, pkgs, ... }:
{
networking.hostName = "vaultwarden";
imports = [
../base.nix
../vaultwarden.nix
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}