diff options
Diffstat (limited to 'justfile')
-rw-r--r-- | justfile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/justfile b/justfile index 0168d99..62e5659 100644 --- a/justfile +++ b/justfile @@ -7,6 +7,14 @@ prepare: update-nixos-options: wgo run -exit ./process --input $(nix-build --no-out-link -A nixos-options)/share/doc/nixos/options.json --output data/nixos-options.json +update-darwin-options: + wgo run -exit ./process --input $(nix-build --no-out-link -A darwin-options)/share/doc/darwin/options.json --output data/darwin-options.json + +update-home-manager-options: + wgo run -exit ./process --input $(nix-build --no-out-link -A home-manager-options)/share/doc/home-manager/options.json --output data/home-manager-options.json + +update-all-options: update-nixos-options update-darwin-options update-home-manager-options + checkformat: gofmt -d . goimports -d . |