We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90593f0 commit 169b271Copy full SHA for 169b271
flake.nix
@@ -57,7 +57,13 @@
57
58
config = mkIf cfg.enable {
59
home.packages = [cfg.package];
60
- home.file = {".config/posting/config.yaml".text = builtins.toJSON cfg.settings;} // builtins.listToAttrs (map (theme: {".local/share/posting/themes/${theme.name}.yaml".text = builtins.toJSON theme;}) cfg.themes);
+ home.file =
61
+ {".config/posting/config.yaml".text = builtins.toJSON cfg.settings;}
62
+ // builtins.listToAttrs (map (theme: {
63
+ name = ".local/share/posting/themes/${theme.name}.yaml";
64
+ value = {text = builtins.toJSON theme;};
65
+ })
66
+ cfg.themes);
67
nixpkgs.overlays = [flake.overlays.default];
68
};
69
0 commit comments