about summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--users/fcuny/default.nix2
-rw-r--r--users/fcuny/devel/default.nix9
-rw-r--r--users/fcuny/devel/go.nix11
-rw-r--r--users/fcuny/devel/python.nix7
4 files changed, 1 insertions, 28 deletions
diff --git a/users/fcuny/default.nix b/users/fcuny/default.nix
index 67238db..ffbcb0b 100644
--- a/users/fcuny/default.nix
+++ b/users/fcuny/default.nix
@@ -1,7 +1,7 @@
 { config, lib, pkgs, isDesktop, isTrusted, ... }:
 
 {
-  imports = [ ./cli ./devel ] ++ (if isDesktop then [ ./desktop ] else [ ]);
+  imports = [ ./cli ] ++ (if isDesktop then [ ./desktop ] else [ ]);
 
   programs.home-manager.enable = true;
 
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
-  ];
-}