mirror of
https://github.com/nix-community/home-manager
synced 2024-11-18 09:09:45 +01:00
kconfig: fix missing quoting
This commit is contained in:
parent
2ad154bd1b
commit
e2e7ea9b8f
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ in {
|
|||
else if t == "bool" then
|
||||
"--type bool ${builtins.toJSON v}"
|
||||
else
|
||||
toString v;
|
||||
lib.escapeShellArg (toString v);
|
||||
toLine = file: path: value:
|
||||
if builtins.isAttrs value then
|
||||
lib.mapAttrsToList
|
||||
|
|
Loading…
Reference in a new issue