ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
at stable 12 lines 279 B view raw
1{system, ...}: let 2 wire = import ( 3 # [!code ++] 4 builtins.fetchTarball "https://github.com/forallsys/wire/archive/refs/heads/trunk.tar.gz" # [!code ++] 5 ); # [!code ++] 6in { 7 environment.systemPackages = [ 8 wire.packages.${system}.wire # [!code ++] 9 ]; 10 11 # ... 12}