aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/devel
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/devel')
-rw-r--r--users/fcuny/devel/default.nix9
-rw-r--r--users/fcuny/devel/go.nix11
-rw-r--r--users/fcuny/devel/python.nix7
3 files changed, 0 insertions, 27 deletions
diff --git a/users/fcuny/devel/default.nix b/users/fcuny/devel/default.nix
deleted file mode 100644
index b4ff02e..0000000
--- a/users/fcuny/devel/default.nix
+++ /dev/null
@@ -1,9 +0,0 @@
-{ config, lib, pkgs, isDesktop, ... }:
-with lib;
-
-{
- imports = [ ./go.nix ./python.nix ];
-
- home.packages = with pkgs;
- [ util-linux ] ++ (optionals isDesktop [ flyctl hugo rnix-lsp nixfmt ]);
-}
diff --git a/users/fcuny/devel/go.nix b/users/fcuny/devel/go.nix
deleted file mode 100644
index e688ac7..0000000
--- a/users/fcuny/devel/go.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ config, ... }: {
-
- programs.go = {
- enable = true;
- goPath = ".local/share/pkg.go";
- goBin = ".local/bin.go";
- goPrivate = [ "git.fcuny.net" "golang.fcuny.net" ];
- };
-
- home.sessionPath = [ config.home.sessionVariables.GOBIN ];
-}
diff --git a/users/fcuny/devel/python.nix b/users/fcuny/devel/python.nix
deleted file mode 100644
index 4a3e53c..0000000
--- a/users/fcuny/devel/python.nix
+++ /dev/null
@@ -1,7 +0,0 @@
-{ pkgs, ... }:
-
-{
- home.packages = with pkgs; [
- python310
- ];
-}