Commit 11cd81e9e2a7

Vincent Demeester <vincent@sbr.pm>
2018-09-07 16:02:19
Add shikoku.nix and rename current one to win
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent f7a5acd
shikoku.nix
@@ -3,9 +3,18 @@
 {
   imports = [
     ./base.nix
+    ./devops.nix
     ./dev.go.nix
+    ./dev.rust.nix
+    ./dev.python.nix
+    ./dev.js.nix
+    ./dev.java.nix
+    ./dev.haskell.nix
     ./fish.nix
     ./ssh.nix
   ];
-  home.packages = with pkgs; [ docker ];
+  home.packages = with pkgs; [
+    vscode
+    zoom-us
+  ];
 }
shikoku.win.nix
@@ -0,0 +1,11 @@
+{ pkgs, ... }:
+
+{
+  imports = [
+    ./base.nix
+    ./dev.go.nix
+    ./fish.nix
+    ./ssh.nix
+  ];
+  home.packages = with pkgs; [ docker ];
+}