Commit eaf73a608108

Vincent Demeester <vincent@sbr.pm>
2018-04-29 21:27:33
Migrate some dev configuration to home..
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 395a3bc
Changed files (2)
machine
profiles
machine/wakasu.nix
@@ -22,7 +22,7 @@
   ];
 
   home-manager.users.vincent = {...}: {
-    imports = [ ../envs/wakasu.nix ../envs/laptop.nix ];
+    imports = [ ../envs/wakasu.nix ../envs/dev.nix ../envs/laptop.nix ];
   };
 
   boot.loader.systemd-boot.enable = true;
profiles/dev.nix
@@ -3,15 +3,12 @@
 { configs, pkgs, ...}:
 
 {
-	imports = 
-		[
-			./gitconfig.nix
-		];
+	imports = [
+		./gitconfig.nix
+	];
 	environment.systemPackages = with pkgs; [
 		git
-		jq
 		grc
-		platinum-searcher
 		ripgrep
     gnumake
 	];