diff options
author | lassulus <lass@lassul.us> | 2016-12-23 18:38:37 +0100 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2016-12-23 18:38:37 +0100 |
commit | acb2f0b0427b5437c02bd976aacb45ce71508fe4 (patch) | |
tree | 663cf250e7a8e0f84636d043ff13281ff28d27a7 /makefu/1systems/fileleech.nix | |
parent | b8975f6ed4cde4af3e72f0f83624221ee6351885 (diff) | |
parent | af3a7e67e3d4505a35c78bc327f76b280d90e60d (diff) |
Merge remote-tracking branch 'gum/master'
Diffstat (limited to 'makefu/1systems/fileleech.nix')
-rw-r--r-- | makefu/1systems/fileleech.nix | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/makefu/1systems/fileleech.nix b/makefu/1systems/fileleech.nix new file mode 100644 index 000000000..4d9b37cea --- /dev/null +++ b/makefu/1systems/fileleech.nix @@ -0,0 +1,27 @@ +{ config, pkgs, ... }: +{ + imports = [ + ../. + # configure your hw: + # ../2configs/hw/CAC.nix + # ../2configs/fs/CAC-CentOS-7-64bit.nix + ../2configs/save-diskspace.nix + ../2configs/tinc/retiolum.nix + + ]; + krebs = { + enable = true; + build.host = config.krebs.hosts.fileleech; + }; + + boot.loader.grub.enable = true; + boot.loader.grub.version = 2; + boot.loader.grub.device = "/dev/disk/by-id/ata-INTEL_SSDSA2M080G2GC_CVPO003402PB080BGN"; + fileSystems."/" = { + device = "/dev/disk/by-id/ata-INTEL_SSDSA2M080G2GC_CVPO003402PB080BGN"; + }; + + boot.initrd.availableKernelModules = [ "uhci_hcd" "ehci_pci" "ahci" "aacraid" "usb_storage" "usbhid" ]; + boot.kernelModules = [ "kvm-intel" ]; + boot.extraModulePackages = [ ]; +} |