11 lines
No EOL
272 B
Nix
11 lines
No EOL
272 B
Nix
# Boot configuration
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# Use the systemd-boot EFI boot loader
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
# Enable flakes
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
} |