remove redundant arg

This commit is contained in:
Sridhar Ratnakumar 2022-12-03 12:49:06 -05:00
parent ef17d1b04e
commit baa4ab9c0c

View file

@ -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 =