6 lines
206 B
Nix
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" ];
|
|
}
|