diff options
author | makefu <github@syntax-fehler.de> | 2016-01-22 11:35:00 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-01-22 11:35:00 +0100 |
commit | b0f7eb47dc44f657e0b18f0fe3d91408505a2e4a (patch) | |
tree | 2bc7e1332b588d877be21e1c7bc8f8195794a051 /makefu/1systems | |
parent | b31d847a7858f143d1f783efa9230c9aac60c501 (diff) | |
parent | ed4e0241d5aba830f31a7271435c93c7299b884b (diff) |
Merge branch 'master' of gum:stockholm into fix-cert
Diffstat (limited to 'makefu/1systems')
-rw-r--r-- | makefu/1systems/wbob.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/makefu/1systems/wbob.nix b/makefu/1systems/wbob.nix new file mode 100644 index 000000000..d6916f006 --- /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"; + }; +} |