Homelab/system.nix
2025-09-26 04:19:40 +00:00

6 lines
206 B
Nix

{ config, lib, pkgs, ... }: {
# System boots
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
nix.settings.experimental.features = [ "nix-commmand" "flakes" ];
}