1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36: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>";
commit = true;
access-tokens = {
github.com = "ghp_blahblahblah...";
gitlab.com = {
"github.com" = "ghp_blahblahblah...";
"gitlab.com" = {
command = [
"secret-tool"
"or"
@ -35,7 +35,7 @@ in
"use"
];
};
gitlab.gnome.org = {
"gitlab.gnome.org" = {
file = "/path/to/api/token";
};
};