Compare commits
3 commits
2c29a52d74
...
67e7a3269d
Author | SHA1 | Date | |
---|---|---|---|
67e7a3269d | |||
cc4d0a7d3f | |||
9eb8afe259 |
4 changed files with 16 additions and 3 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1 +1,4 @@
|
|||
result
|
||||
.direnv/
|
||||
.envrc/
|
||||
.task/
|
||||
|
|
|
@ -19,7 +19,7 @@ doas nixos-rebuild switch --flake ".#mrmeeseeks"
|
|||
|
||||
## Update manual packages from github
|
||||
|
||||
Somes of module use `fetchFromGithub` who need *SHA-256* hash to meet
|
||||
Some modules use `fetchFromGithub` who need *SHA-256* hash to meet
|
||||
reproductibility. Theses hashed can be obtain with `nix-prefetch-github`:
|
||||
|
||||
```shell
|
||||
|
@ -33,4 +33,4 @@ $ nix-prefetch-ghithub --rev v1.22.0 sindresorhus pure
|
|||
}
|
||||
```
|
||||
|
||||
In this example whe have obtained the hash for the specific 1.22.0 version.
|
||||
In this example we have obtained the hash for the specific 1.22.0 version.
|
||||
|
|
3
_typos.toml
Normal file
3
_typos.toml
Normal file
|
@ -0,0 +1,3 @@
|
|||
[default.extend-words]
|
||||
doas = "doas"
|
||||
edn = "edn"
|
|
@ -4,8 +4,15 @@ no_tty: true
|
|||
|
||||
commit-msg:
|
||||
commands:
|
||||
lint:commitmsg:
|
||||
lint:convco:
|
||||
run: cat {1} | convco check --from-stdin
|
||||
lint:typos:
|
||||
run: cat {1} | typos -
|
||||
pre-commit:
|
||||
parallel: false
|
||||
commands:
|
||||
lint:typos:staged_files:
|
||||
run: typos {staged_files}
|
||||
pre-push:
|
||||
parallel: false
|
||||
commands:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue