diff --git a/flake.nix b/flake.nix index 63235ef..b092c9b 100644 --- a/flake.nix +++ b/flake.nix @@ -12,6 +12,11 @@ outputs = { self, nixpkgs, nixos-conf-editor, home-manager, ... } @ inputs: let system = "x86_64-linux"; in { + nixConfig = { + access-tokens = [ + "github.com=***REMOVED***" + ]; + }; nixosConfigurations = { # automatically use each host folder by name nixos = nixpkgs.lib.nixosSystem { @@ -66,11 +71,7 @@ home-manager.users.nixos = import ./common/home.nix; } ]; - nixConfig = { - access-tokens = [ - "github.com=***REMOVED***" - ]; - }; + }; };