Skip to content

Commit

Permalink
feat(nixd): add nixd option evaluation and config file
Browse files Browse the repository at this point in the history
  • Loading branch information
dr460nf1r3 committed Oct 15, 2023
1 parent 3618583 commit d793ee5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .nixd.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"formatting": { "command": "alejandra" },
"options": {
"enable": true,
"target": {
"args": [],
"installable": ".#nixosConfigurations.nixos.options"
}
}
}
10 changes: 10 additions & 0 deletions .nixd.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
formatting.command = "alejandra";
options = {
enable = true;
target = {
args = [];
installable = ".#nixosConfigurations.nixos.options";
};
};
}

0 comments on commit d793ee5

Please sign in to comment.