13 lines
372 B
Nix
13 lines
372 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.kernelPackages = pkgs.linuxPackages_latest;
|
|
boot.initrd.kernelModules = [ "amdgpu" ];
|
|
boot.kernelParams = [ "preempt=full" ];
|
|
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
xdg.portal.config.common.default = [ "gnome" ];
|
|
}
|