summaryrefslogtreecommitdiffstats
path: root/makefu/1systems/cake/config.nix
blob: 0630d19ad8ac6dc3ff25ab24dfb94712deaad3c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ config, pkgs, ... }:
{
    imports = [
        <stockholm/makefu>
        # configure your hw:
        # <stockholm/makefu/2configs/hw/CAC.nix>
        # <stockholm/makefu/2configs/fs/CAC-CentOS-7-64bit.nix>
        # <stockholm/makefu/2configs/save-diskspace.nix
    ];
    krebs = {
        enable = true;
        tinc.retiolum.enable = true;
        build.host = config.krebs.hosts.cake;
    };
    # You want to change these :)
    boot.loader.grub.device = "/dev/sda";
    fileSystems."/" = {
        device = "/dev/sda1";
    };
}