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:
parent
a1316b0a77
commit
30fc1b5326
1 changed files with 3 additions and 3 deletions
|
|
@ -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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue