summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-08 03:31:05 -0700
committerFuwn <[email protected]>2024-09-08 03:31:05 -0700
commit51d47db21c84b27b57cb5b7f6a77ac66ac624289 (patch)
treeda442cba159ff89f33315949f0af7cab108802a5 /shells
parentBump (diff)
downloadnixos-config-51d47db21c84b27b57cb5b7f6a77ac66ac624289.tar.xz
nixos-config-51d47db21c84b27b57cb5b7f6a77ac66ac624289.zip
Bump: shells
Diffstat (limited to 'shells')
-rw-r--r--shells/konoha/.envrc1
-rw-r--r--shells/konoha/shell.nix11
2 files changed, 12 insertions, 0 deletions
diff --git a/shells/konoha/.envrc b/shells/konoha/.envrc
new file mode 100644
index 0000000..1d953f4
--- /dev/null
+++ b/shells/konoha/.envrc
@@ -0,0 +1 @@
+use nix
diff --git a/shells/konoha/shell.nix b/shells/konoha/shell.nix
new file mode 100644
index 0000000..6e21677
--- /dev/null
+++ b/shells/konoha/shell.nix
@@ -0,0 +1,11 @@
+{
+ pkgs ? import <nixpkgs> { },
+}:
+pkgs.mkShell {
+ packages = [
+ (pkgs.python3.withPackages (ps: [
+ ps.flask
+ ps.gunicorn
+ ]))
+ ];
+}