1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 19:46:05 +01:00

nix-init: ensure settings example produces a valid configuration

The domain names need to be quoted to not created nested attrsets.
This commit is contained in:
kpbaks 2025-09-02 19:03:29 +02:00 committed by Austin Horstman
parent a1316b0a77
commit 30fc1b5326

View file

@ -25,8 +25,8 @@ in
nixpkgs = "<nixpkgs>"; nixpkgs = "<nixpkgs>";
commit = true; commit = true;
access-tokens = { access-tokens = {
github.com = "ghp_blahblahblah..."; "github.com" = "ghp_blahblahblah...";
gitlab.com = { "gitlab.com" = {
command = [ command = [
"secret-tool" "secret-tool"
"or" "or"
@ -35,7 +35,7 @@ in
"use" "use"
]; ];
}; };
gitlab.gnome.org = { "gitlab.gnome.org" = {
file = "/path/to/api/token"; file = "/path/to/api/token";
}; };
}; };