From 33776fcc173e029315775e9c6e1bf8a890e6d863 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Mon, 6 Jun 2022 23:57:38 +0000 Subject: [PATCH] Update configuration.nix --- configuration.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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;