about summary refs log tree commit diff
path: root/users/fcuny/devel
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/devel')
-rw-r--r--users/fcuny/devel/default.nix8
-rw-r--r--users/fcuny/devel/go.nix8
-rw-r--r--users/fcuny/devel/python.nix7
3 files changed, 23 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/devel/go.nix b/users/fcuny/devel/go.nix
new file mode 100644
index 0000000..647da39
--- /dev/null
+++ b/users/fcuny/devel/go.nix
@@ -0,0 +1,8 @@
+{
+  programs.go = {
+    enable = true;
+    goPath = ".local/share/pkg.go";
+    goBin = ".local/bin.go";
+    goPrivate = [ "git.fcuny.net" "golang.fcuny.net" ];
+  };
+}
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
+  ];
+}