about summary refs log tree commit diff
path: root/users/fcuny/common.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-09 08:35:25 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-09 08:35:25 -0800
commit0c40201f2cae729a94c43490a07c437aedfc4534 (patch)
treeca37fdf59b46b1b530434bbbcbc5ee5784bb7862 /users/fcuny/common.nix
parentterminal: alacritty is our terminal of choice (diff)
downloadworld-0c40201f2cae729a94c43490a07c437aedfc4534.tar.gz
home-manager: add more common programs
Add git configuration and move go to its own module.
Diffstat (limited to '')
-rw-r--r--users/fcuny/common.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/users/fcuny/common.nix b/users/fcuny/common.nix
index 62ebb80..7bad304 100644
--- a/users/fcuny/common.nix
+++ b/users/fcuny/common.nix
@@ -13,8 +13,8 @@
     EDITOR = "vim";
   };
 
-  programs.go = {
-    enable = true;
-    goPath = "workspace/go";
-  };
+  import = [
+    ./git.nix
+    ./go.nix
+  ]
 }