added reading of cards from data for template started migrating configs to all nix
This commit is contained in:
parent
25f70e849b
commit
60f28672d3
15 changed files with 646 additions and 46 deletions
17
.config/nix/package.nix
Normal file
17
.config/nix/package.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ nixago }:
|
||||
|
||||
let
|
||||
data = {
|
||||
devDependencies = {
|
||||
prettier = "^3.0.1";
|
||||
prettier-plugin-tailwindcss = "^0.4.1";
|
||||
tailwindcss = "^3.3.3";
|
||||
};
|
||||
};
|
||||
in
|
||||
nixago.lib.make {
|
||||
inherit data;
|
||||
output = "package.json";
|
||||
format = "json"; # Optional if it matches the file extension
|
||||
engine = nixago.engines.nix { }; # Optional as this is the default engine
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue