From c867dd3ea21816e69de08088385d0d9246433765 Mon Sep 17 00:00:00 2001 From: Stefan Weigl-Bosker Date: Mon, 24 Feb 2025 12:08:53 -0500 Subject: fixed nixGL wrapper --- flake.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index f742c9f..4758390 100644 --- a/flake.nix +++ b/flake.nix @@ -10,13 +10,14 @@ }; nixgl = { - url = "github:nix-community/nixGL"; + url = "github:nix-community/nixgl"; inputs.nixpkgs.follows = "nixpkgs"; }; }; outputs = inputs@{ + self, nixpkgs, home-manager, nixgl, @@ -31,17 +32,18 @@ config.allowUnfree = true; inherit system overlays; }; - custom = import "custom.nix"; + inherit (pkgs) lib; in { packages.${system}.default = home-manager.defaultPackage.${system}; homeConfigurations = { - "stefan" = home-manager.lib.homeManagerConfiguration { - inherit pkgs; - extraSpecialArgs = { - inherit inputs; - }; - modules = [ ./home.nix ]; + inherit inputs system pkgs; + "stefan" = home-manager.lib.homeManagerConfiguration { + inherit pkgs; + extraSpecialArgs = { + inherit system inputs pkgs; }; + modules = [ ./home.nix ]; }; + }; }; } -- cgit v1.2.3