aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorStefan Weigl-Bosker <stefan@s00.xyz>2025-02-24 12:08:53 -0500
committerStefan Weigl-Bosker <stefan@s00.xyz>2025-02-24 12:08:53 -0500
commitc867dd3ea21816e69de08088385d0d9246433765 (patch)
treec8f0c6e3d81d758e6b77fdbdc7875daa436eac61 /flake.nix
parent1ae82800c18ee751fc6f274c19fff9fc2fd84d47 (diff)
downloadhome-c867dd3ea21816e69de08088385d0d9246433765.tar.gz
fixed nixGL wrapper
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix18
1 files changed, 10 insertions, 8 deletions
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 ];
};
+ };
};
}