Commit 5ae3bd33221c

Vincent Demeester <vincent@sbr.pm>
2017-02-17 14:37:06
Add shikoku machine
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 0e7a6d0
Changed files (1)
machine/shikoku.nix
@@ -0,0 +1,36 @@
+{ config, pkgs, ... }:
+
+{
+	imports =
+		[ # Include the results of the hardware scan.
+			../hardware-configuration.nix
+			../configuration/custom-packages.nix
+			../configuration/common.nix
+			../profiles/ssh.nix
+			../profiles/laptop.nix
+			../profiles/virtualization.nix
+			../profiles/dockerization.nix
+			../profiles/office.nix
+			../location/home.nix
+			#../hardware/dell-latitude-e6540.nix
+			../service/ssh-tunnel.nix
+		];
+
+#	boot = {
+#		loader = {
+#			grub = {
+#				enable = true;
+#				version = 2;
+#				device = "/dev/sdc";
+#				extraEntries = ''
+#				menuentry "Windows 10" {
+#					insmod ntfs
+#					search --no-floppy --fs-uuid --set EE62F055662F023CD
+#					chainloarder +1
+#				}
+#				'';
+#			};
+#		};
+#	};
+	
+}