Files
.dotfiles/system/core/boot.nix
T
2026-07-31 02:10:51 -06:00

11 lines
279 B
Nix

{ config, pkgs, ... }:
{
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.linuxPackages;
boot.kernelModules = [ "uinput" ];
system.nixos.label = "niri-v.1.1";
environment.pathsToLink = [ "/libexec" ];
}