From 8376e2453c8ad4aab1ed10651fbc6967a146bf1e Mon Sep 17 00:00:00 2001 From: Whovian9369 Date: Sat, 18 May 2024 03:34:23 -0400 Subject: [PATCH] Bleh --- flake.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 8973d03..ad62caa 100644 --- a/flake.nix +++ b/flake.nix @@ -67,6 +67,12 @@ self, nixpkgs, nixos-wsl, # Added by me agenix, home-manager, nix-index-database, xil, ... }: + let + pkgs = import nixpkgs { + system = "x86_64-linux"; + config.allowUnfree = true; + }; + in { nixosConfigurations = { nixos-wsl = nixpkgs.lib.nixosSystem { @@ -108,8 +114,8 @@ }; packages.x86_64-linux = { - irdkit = callPackage ./home/packages/irdkit/package.nix {}; - ird_tools = callPackage ./home/packages/ird_tools/package.nix {}; + irdkit = pkgs.callPackage ./home/packages/irdkit/package.nix {}; + ird_tools = pkgs.callPackage ./home/packages/ird_tools/package.nix {}; # rom-properties = callPackage ./home/packages/rom-properties/package.nix {}; }; };