Updated Home (markdown)

Jörg Thalheim 2022-09-14 06:02:57 +01:00
parent 5d3f137c68
commit eaa16d2d3b

19
Home.md

@ -19,6 +19,25 @@ command = "alejandra"
includes = ["*.nix"]
```
Other tool choices: Deadnix as a linter + nixpkgs-fmt.
```
[formatter.nix]
command = "sh"
options = [
"-eucx",
"""
# First deadnix
deadnix --edit "$@"
# Then nixpkgs-fmt
nixpkgs-fmt "$@"
""",
"--",
]
includes = [ "*.nix" ]
excludes = ["nix/sources.nix"]
```
### haskell
```