From 229f27b2f6441776387a5a7add5cb03a92fd0e96 Mon Sep 17 00:00:00 2001 From: Lukewh Date: Mon, 18 Nov 2024 12:23:33 +0000 Subject: [PATCH] Updates --- configuration.nix | 2 +- flake.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configuration.nix b/configuration.nix index 5111248..356d481 100644 --- a/configuration.nix +++ b/configuration.nix @@ -46,7 +46,7 @@ LC_TIME = "en_GB.UTF-8"; }; - hardware.opengl.enable = true; + hardware.graphics.enable = true; # tuigreeter services.greetd = with pkgs; { diff --git a/flake.nix b/flake.nix index b1533a2..425e93a 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ description = "A very basic flake"; inputs = { - nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; + nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; }; outputs = { self, nixpkgs }: @@ -17,7 +17,7 @@ in { nixosConfigurations = { graeme-nix = lib.nixosSystem { - inherit system; + specialArgs = { inherit system; }; modules = [ ./configuration.nix ]; }; };