nixos-conf/machine-confs/vaultwarden.nix
2024-10-17 02:18:29 +03:00

17 lines
304 B
Nix

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