summaryrefslogtreecommitdiffstats
path: root/1systems
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
commit2407b72fae9e6afe9682a8e16cfab217ae12e57e (patch)
treeda59b2b1ffa10485bcf421e202e7c32bab4a2a2f /1systems
parent703da02cab4e368bc8cd3696dc05aa5301f75605 (diff)
makefu: init wbob
Diffstat (limited to '1systems')
-rw-r--r--1systems/wbob.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/1systems/wbob.nix b/1systems/wbob.nix
new file mode 100644
index 000000000..d6916f006
--- /dev/null
+++ b/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";
+ };
+}