From baa4ab9c0cc8cec4105901a6328bcb7b97660980 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sat, 3 Dec 2022 12:49:06 -0500 Subject: [PATCH] remove redundant arg --- flake.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 0f4c0e1..0ffa40a 100644 --- a/flake.nix +++ b/flake.nix @@ -127,7 +127,6 @@ nixosConfigurations = let system = "x86_64-linux"; - pkgs = nixpkgs.legacyPackages.${system}; homeModules = [ { home-manager.users.${userName} = { pkgs, ... }: { @@ -146,7 +145,7 @@ } ]; mkLinuxSystem = extraModules: nixpkgs.lib.nixosSystem { - inherit system pkgs; + inherit system; # Arguments to pass to all modules. specialArgs = { inherit system inputs; }; modules =