diff options
Diffstat (limited to 'flake-parts/flake.nix')
| -rw-r--r-- | flake-parts/flake.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/flake-parts/flake.nix b/flake-parts/flake.nix index 36263dd..af3ecc0 100644 --- a/flake-parts/flake.nix +++ b/flake-parts/flake.nix @@ -2,7 +2,7 @@ description = "Description for the project"; inputs = { - nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11"; devenv.url = "github:cachix/devenv"; }; @@ -36,6 +36,14 @@ echo this is an ansible project ''; }; + + devenv.shells.projectC = { + packages = [ config.packages.default ]; + languages.opentofu.enable = true; + enterShell = '' + echo this is a terraform project + ''; + }; }; }; } |
