about summary refs log tree commit diff
path: root/users
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-08 17:00:26 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-08 17:00:26 -0700
commitddefeb813b84e5d0f76c974fd9b8df9ebc9636a4 (patch)
tree6abdf1486e6c15bdbc854f42402f23a866d19403 /users
parentremove old 'trusted' modules (diff)
downloadworld-ddefeb813b84e5d0f76c974fd9b8df9ebc9636a4.tar.gz
delete all devel modules
They are all under home/ now
Diffstat (limited to 'users')
-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
-  ];
-}