summaryrefslogtreecommitdiffstats
path: root/makefu/1systems/fileleech.nix
blob: 4d9b37cea7f85ab4361e3083a4734da9926c1748 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 = [ ];
}