diff options
author | lassulus <lass@aidsballs.de> | 2016-02-01 15:19:04 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-02-01 15:19:04 +0100 |
commit | b7e2a64c3205a36b850dd1990146e0aeab5dbf5e (patch) | |
tree | 1434c93427bee20fb515168c6a2705eb04aa2970 /makefu/1systems/wbob.nix | |
parent | 72dc2dd7fa54c77e08052efed21f68758fa533a2 (diff) | |
parent | b38a821c31de84af6567073bd65ac76c5fc02b5d (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/1systems/wbob.nix')
-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"; + }; +} |