nixos-servers/shell.nix
2024-10-28 14:12:06 +01:00

12 lines
217 B
Nix

{
flake-utils,
nixpkgs,
...
}:
flake-utils.lib.eachDefaultSystem (system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [ansible];
};
})