diff --git a/eshu/etc/nixos/configuration.nix b/eshu/etc/nixos/configuration.nix index dafaf93..0e06fed 100644 --- a/eshu/etc/nixos/configuration.nix +++ b/eshu/etc/nixos/configuration.nix @@ -11,6 +11,13 @@ ]; + nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ + "steam" + "steam-original" + "steam-run" + "xow_dongle-firmware" + ]; + boot.extraModprobeConfig = '' options bluetooth disable_ertm=1 ''; boot.kernelPackages = pkgs.linuxPackages; # (this is the default) some amdgpu issues on 6.10 # Use the systemd-boot EFI boot loader. @@ -153,13 +160,6 @@ # Enable the OpenSSH daemon. services.openssh.enable = true; - nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ - "steam" - "steam-original" - "steam-run" - "xow_dongle-firmware" - ]; - # Open ports in the firewall. # networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ];