diff --git a/configuration.nix b/configuration.nix index b897d08..9affff9 100644 --- a/configuration.nix +++ b/configuration.nix @@ -55,6 +55,12 @@ hashedPassword = "$6$aAcbLtqiqzySifls$jdKMOQjoWITHD/dWNNZVUH/qNc6aoJ7v4zYofi0U7IJSVTbmOfChS3mzaJbp57AodjdPNKPrnrip8Nlh2Qanx."; }; + # Allow Unfree + nixpkgs.config.allowUnfree = true; + + # Enable 32 Bit libraries for applications like Steam + hardware.opengl.driSupport32Bit = true; + # Install some packages environment.systemPackages = with pkgs; @@ -87,12 +93,6 @@ # Enable CUPS services.printing.enable = true; - # Allow Unfree - nixpkgs.config.allowUnfree = true; - - # Enable 32 Bit libraries for applications like Steam - hardware.opengl.driSupport32Bit = true; - # System system.stateVersion = "22.05"; system.autoUpgrade.enable = true;