diff --git a/base-system/flake.nix b/base-system/flake.nix index ee71ee4..4b505cf 100644 --- a/base-system/flake.nix +++ b/base-system/flake.nix @@ -15,16 +15,9 @@ outputs = {nixpkgs, home-manager, ...}: let system = "x86_64-linux"; - pkgs = import nixpkgs { - inherit system; - - config = { - allowUnfree = true; - }; - }; in { - nixosConfigurations.nixdesktop = pkgs.lib.nixosSystem { + nixosConfigurations.nixdesktop = nixpkgs.lib.nixosSystem { specialArgs = { inherit system; }; modules = [ @@ -37,7 +30,7 @@ } ]; }; - nixConfigurations.nixsurface = pkgs.lib.nixosSystem { + nixConfigurations.nixsurface = nixpkgs.lib.nixosSystem { specialArgs = { inherit system; }; modules = [