nixos-conf/machine-confs/vaultwarden.nix

18 lines
277 B
Nix
Raw Normal View History

2024-05-23 13:39:48 +03:00
{ config, pkgs, ... }:
{
networking.hostName = "vaultwarden";
imports = [
2024-05-29 17:33:21 +03:00
../base.nix
../vaultwarden.nix
2024-05-23 13:39:48 +03:00
];
# HARDWARE SPECIFIC
services.qemuGuest.enable = true;
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
}