From a27113613ae04511271b7ee4d99825066763b961 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Sun, 13 Apr 2025 18:13:51 +0000 Subject: [PATCH] Alphabetize unfree config --- eshu/etc/nixos/configuration.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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 = [ ... ];