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

[autofix.ci] apply automated fixes

authored by

autofix-ci[bot] and committed by
GitHub
54893868 0e324575

+8 -8
+1 -1
doc/snippets/guides/installation/flake.nix
··· 5 5 systems.url = "github:nix-systems/default"; 6 6 }; 7 7 8 - outputs = inputs @ { 8 + outputs = { 9 9 nixpkgs, 10 10 wire, 11 11 systems,
+7 -7
doc/snippets/guides/installation/shell.nix
··· 1 1 let 2 2 sources = import ./npins; 3 - pkgs = import sources.nixpkgs { }; 3 + pkgs = import sources.nixpkgs {}; 4 4 wire = import sources.wire; 5 5 in 6 - pkgs.mkShell { 7 - packages = [ 8 - wire.packages.${builtins.currentSystem}.wire 9 - pkgs.npins 10 - ]; 11 - } 6 + pkgs.mkShell { 7 + packages = [ 8 + wire.packages.${builtins.currentSystem}.wire 9 + pkgs.npins 10 + ]; 11 + }