14 lines
227 B
Nix
14 lines
227 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
boot = {
|
|
supportedFilesystems = [ "bcachefs" ];
|
|
initrd.kernelModules = [ "amdgpu" ];
|
|
loader = {
|
|
efi = {
|
|
canTouchEfiVariables = true;
|
|
};
|
|
};
|
|
loader.systemd-boot.enable = true;
|
|
};
|
|
}
|