diff --git a/flake.nix b/flake.nix index dfad36a..d6db5e4 100644 --- a/flake.nix +++ b/flake.nix @@ -29,11 +29,11 @@ in rec { home-manager.nixosModule ]; }; - lucy = nixpkgs.lib.nixosSystem { + luci = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit stateVersion; - hostname = "lucy"; + hostname = "luci"; username = "ephase"; hostConfig = { gaming = false; diff --git a/hosts/lucy/hardware-configuration.nix b/hosts/luci/hardware-configuration.nix similarity index 94% rename from hosts/lucy/hardware-configuration.nix rename to hosts/luci/hardware-configuration.nix index 5b5fb11..8377bfa 100644 --- a/hosts/lucy/hardware-configuration.nix +++ b/hosts/luci/hardware-configuration.nix @@ -51,4 +51,7 @@ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; + hardware.opengl.enable = true; + hardware.opengl.driSupport = true; + hardware.opengl.driSupport32Bit = true; }