Commit b11e5d4bf865

Vincent Demeester <vincent@sbr.pm>
2018-03-08 09:35:10
Small clean
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 313b06e
Changed files (2)
machine
profiles
machine/wakasu.nix
@@ -10,7 +10,6 @@
 			../profiles/ssh.nix
 			../profiles/virtualization.nix
 			../profiles/dockerization.nix
-			../service/docker.nix
 			../profiles/dev.go.nix
 			../profiles/dev.python.nix
 			../location/docker.nix
profiles/dev.go.nix
@@ -2,6 +2,10 @@
 { configs, pkgs, ...}:
 
 {
+	imports = 
+	[
+		./dev.nix
+	];
 	nixpkgs.config = {
 		packageOverrides = self: with self; let
 			fetchNixPkgs = { rev, sha256, owner, repo }:
@@ -18,10 +22,6 @@
 			inherit (goPkgs) go_1_9 gotools golint godef gocode gotests gopkgs gomodifytags go-outline go-symbols goconvey delve vndr dep;
 		};
 	};
-	imports = 
-	[
-		./dev.nix
-	];
   environment.systemPackages = with pkgs; [
     go_1_9
     gcc