This commit is contained in:
Vili Sinervä 2024-05-23 13:39:48 +03:00
commit be23132d54
No known key found for this signature in database
GPG key ID: DF8FEAF54EFAC996
13 changed files with 1784 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ 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;
}