summaryrefslogtreecommitdiffstats
path: root/makefu
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2016-01-19 20:26:38 +0100
committermakefu <github@syntax-fehler.de>2016-01-19 20:49:36 +0100
commit440e78fc9946d3abf74ae1eeeea1532e84fddec6 (patch)
treef949b039000b6e3ef1d4a8d5e2a1f6c21805e381 /makefu
parent64a69bd1537a2000208bd3bbb5f1be6be08220f6 (diff)
makefu: init wbob
Diffstat (limited to 'makefu')
-rw-r--r--makefu/1systems/wbob.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/makefu/1systems/wbob.nix b/makefu/1systems/wbob.nix
new file mode 100644
index 00000000..d6916f00
--- /dev/null
+++ b/makefu/1systems/wbob.nix
@@ -0,0 +1,19 @@
+{ config, pkgs, ... }:
+{
+ imports =
+ [ # Include the results of the hardware scan.
+ ../2configs/main-laptop.nix
+ ];
+ krebs = {
+ enable = true;
+ retiolum.enable = true;
+ build.host = config.krebs.hosts.wbob;
+ };
+ boot.loader.grub.device = "/dev/sda";
+ boot.initrd.availableKernelModules = [ "xhci_pci" "ehci_pci" "ahci" "usbhid" "usb_storage" ];
+ boot.kernelModules = [ "kvm-intel" ];
+ fileSystems."/" = {
+ device = "/dev/sda1";
+ fsType = "ext4";
+ };
+}