From fee0f1ef14be94158804afc50a2c431e93c5d5c9 Mon Sep 17 00:00:00 2001 From: beatzaplenty Date: Wed, 16 Jul 2025 20:03:18 +1000 Subject: [PATCH] modified: flake.nix --- flake.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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***" - ]; - }; + }; };