Skip to content

Commit

Permalink
fixing existing fmt errors in .nix
Browse files Browse the repository at this point in the history
  • Loading branch information
sarcasticadmin committed Dec 27, 2022
1 parent bbd3633 commit ff9236e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Leverage the nix flake devShell to get pinned nixpkgs
{ pkgs ? import <nixpkgs> {} }:
{ pkgs ? import <nixpkgs> { } }:

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 {
Expand Down

0 comments on commit ff9236e

Please sign in to comment.