This commit is contained in:
2024-11-18 12:23:33 +00:00
parent fc1f0f149a
commit 229f27b2f6
2 changed files with 3 additions and 3 deletions

View File

@ -46,7 +46,7 @@
LC_TIME = "en_GB.UTF-8"; LC_TIME = "en_GB.UTF-8";
}; };
hardware.opengl.enable = true; hardware.graphics.enable = true;
# tuigreeter # tuigreeter
services.greetd = with pkgs; { services.greetd = with pkgs; {

View File

@ -2,7 +2,7 @@
description = "A very basic flake"; description = "A very basic flake";
inputs = { inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
}; };
outputs = { self, nixpkgs }: outputs = { self, nixpkgs }:
@ -17,7 +17,7 @@
in { in {
nixosConfigurations = { nixosConfigurations = {
graeme-nix = lib.nixosSystem { graeme-nix = lib.nixosSystem {
inherit system; specialArgs = { inherit system; };
modules = [ ./configuration.nix ]; modules = [ ./configuration.nix ];
}; };
}; };