dotfiles/config/headless.nix
2025-02-05 10:03:46 -08:00

21 lines
421 B
Nix

{ config, pkgs, inputs, ... }: {
imports = [ ./shared.nix ];
# Bootloader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# Qemu guest
services.qemuGuest.enable = true;
# Install Prometheus for Grafana
services.prometheus.exporters.node = {
enable = true;
port = 9002;
enabledCollectors = [ "systemd" ];
};
system.stateVersion = "24.05";
}