Skip to content
Snippets Groups Projects

Fix/lint

Merged Christophe Ninucci requested to merge fix/lint into main
1 file
+ 6
2
Compare changes
  • Side-by-side
  • Inline
+ 6
2
@@ -7,14 +7,18 @@
outputs = { self, nixpkgs-2405, nixpkgs }:
let
pkgs = import nixpkgs { system = "x86_64-linux"; };
pkgs = import nixpkgs { system = "x86_64-linux"; config.allowUnfree = true; };
dev = ( import ./dev.nix { inherit pkgs; });
ansible = ( import ./ansible.nix { inherit pkgs; });
terraform = ( import ./terraform.nix { inherit pkgs; });
in {
devShell.x86_64-linux = pkgs.mkShell {
nativeBuildInputs = ( import ./dev.nix { inherit pkgs; } ) ++ ( import ./ansible.nix { inherit pkgs; }) ++ ( import ./terraform.nix { inherit pkgs; });
nativeBuildInputs = dev ++ ansible ++ terraform;
shellHook = ''
export ANSIBLE_DISPLAY_OK_HOSTS=yes
export PS1="\n\[\033[1;36m\][\[\e]0;\u@\h: \w\a\]\u@\h:\w]\$\[\033[0m\] "
'';
};
lint = pkgs.mkShell { nativeBuildInputs = ansible };
};
}
Loading