ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

remove just

-24
-15
README.md
··· 32 32 Please use `nix develop` for access to the development environment and to ensure 33 33 your changes are ran against the defined git hooks. For simplicity, you may wish 34 34 to use [direnv](https://github.com/direnv/direnv). 35 - 36 - ### Testing 37 - 38 - #### dhat profiling 39 - 40 - ```sh 41 - $ just build-dhat 42 - ``` 43 - 44 - #### Testing 45 - 46 - ```sh 47 - $ cargo test 48 - $ nix flake check 49 - ```
-1
flake.nix
··· 86 86 # docs only 87 87 alejandra.enable = true; 88 88 rustfmt.enable = true; 89 - just.enable = true; 90 89 prettier.enable = true; 91 90 protolint.enable = true; 92 91 taplo.enable = true;
-7
justfile
··· 1 - # vim: set ft=make : 2 - 3 - build-dhat: 4 - cargo build --profile profiling --features dhat-heap 5 - @echo 'dhat binaries in target/profiling' 6 - @echo 'Example:' 7 - @echo 'WIRE_KEY_AGENT=/nix/store/...-key_agent-0.1.0 PROJECT/target/profiling/wire apply ...'
-1
nix/shells.nix
··· 18 18 cfg.settings.enabledPackages 19 19 cfg.settings.package 20 20 21 - pkgs.just 22 21 pkgs.pnpm 23 22 pkgs.nodejs 24 23 pkgs.sqlx-cli