From ff9236e0bdda7949d85ea46b692e8727b4b63b2c Mon Sep 17 00:00:00 2001 From: Robert James Hernandez Date: Tue, 27 Dec 2022 05:28:42 +0000 Subject: [PATCH] fixing existing fmt errors in .nix --- shell.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 {