diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-02-24 12:08:53 -0500 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-02-24 12:08:53 -0500 |
| commit | c867dd3ea21816e69de08088385d0d9246433765 (patch) | |
| tree | c8f0c6e3d81d758e6b77fdbdc7875daa436eac61 /flake.nix | |
| parent | 1ae82800c18ee751fc6f274c19fff9fc2fd84d47 (diff) | |
| download | home-c867dd3ea21816e69de08088385d0d9246433765.tar.gz | |
fixed nixGL wrapper
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 18 |
1 files changed, 10 insertions, 8 deletions
@@ -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 ]; }; + }; }; } |