nixos-conf/machine-confs/vaultwarden.nix

18 lines
281 B
Nix
Raw Normal View History

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