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

glab: coerce glab tmpfile rule argument to string

This commit is contained in:
Benedikt Rips 2025-11-03 10:55:43 +01:00 committed by Austin Horstman
parent 2318e30ea1
commit 8c824254b1

View file

@ -38,7 +38,7 @@ in
# mode 0600. # mode 0600.
systemd.user.tmpfiles.settings.glab = lib.mkIf (cfg.settings != { }) { systemd.user.tmpfiles.settings.glab = lib.mkIf (cfg.settings != { }) {
rules."${config.xdg.configHome}/glab-cli/config.yml" = { rules."${config.xdg.configHome}/glab-cli/config.yml" = {
"C+$".argument = yaml.generate "glab-config" cfg.settings; "C+$".argument = "${yaml.generate "glab-config" cfg.settings}";
z.mode = "0600"; z.mode = "0600";
}; };
}; };