aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/devel
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--users/fcuny/devel/default.nix8
-rw-r--r--users/fcuny/devel/go.nix (renamed from users/fcuny/cli/go.nix)0
-rw-r--r--users/fcuny/devel/python.nix7
3 files changed, 15 insertions, 0 deletions
diff --git a/users/fcuny/devel/default.nix b/users/fcuny/devel/default.nix
new file mode 100644
index 0000000..fcb4d2b
--- /dev/null
+++ b/users/fcuny/devel/default.nix
@@ -0,0 +1,8 @@
+{ config, lib, pkgs, ...}:
+
+{
+ imports = [
+ ./go.nix
+ ./python.nix
+ ];
+}
diff --git a/users/fcuny/cli/go.nix b/users/fcuny/devel/go.nix
index 647da39..647da39 100644
--- a/users/fcuny/cli/go.nix
+++ b/users/fcuny/devel/go.nix
diff --git a/users/fcuny/devel/python.nix b/users/fcuny/devel/python.nix
new file mode 100644
index 0000000..4a3e53c
--- /dev/null
+++ b/users/fcuny/devel/python.nix
@@ -0,0 +1,7 @@
+{ pkgs, ... }:
+
+{
+ home.packages = with pkgs; [
+ python310
+ ];
+}