aboutsummaryrefslogtreecommitdiff
path: root/flake-parts/flake.nix
diff options
context:
space:
mode:
authorkdam0 <me@kumardamani.net>2024-07-05 03:29:08 +0000
committerkdam0 <me@kumardamani.net>2024-07-05 03:29:08 +0000
commit406d826e27713af72a6c6cbce6ec9254c8049986 (patch)
tree84a2aa3d1910d5654a8cf8ef3dc720823b08413a /flake-parts/flake.nix
parent4cc896d6f92808273ebce43df210a098de3a85b5 (diff)
updated nixpkgs to latest stableHEADmain
Diffstat (limited to 'flake-parts/flake.nix')
-rw-r--r--flake-parts/flake.nix10
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
+ '';
+ };
};
};
}