diff --git a/shell.nix b/shell.nix index 51ce0890..dbb6040a 100644 --- a/shell.nix +++ b/shell.nix @@ -1,16 +1,16 @@ # Leverage the nix flake devShell to get pinned nixpkgs -{ pkgs ? import {} }: +{ pkgs ? import { } }: with pkgs; let scale_python = python38.withPackages - (pythonPackages: with pythonPackages; [ pytest pylint ]); + (pythonPackages: with pythonPackages; [ pytest pylint ]); # Trying to keep these pkg sets separate for later global = [ bash curl git jq kermit nixpkgs-fmt treefmt screen glibcLocales ] ++ [ scale_python ]; - ansible_sub = [ansible_2_12 ansible-lint]; - openwrt_sub = [ expect gomplate magic-wormhole tftp-hpa nettools unixtools.ping]; + ansible_sub = [ ansible_2_12 ansible-lint ]; + openwrt_sub = [ expect gomplate magic-wormhole tftp-hpa nettools unixtools.ping ]; network_sub = [ perl534 ]; in mkShell {