about summary refs log tree commit diff
path: root/nixosConfigurations/test-headless/default.nix
blob: 919a4363421eb87b67847d8b4ade0ad65736f2a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{lib, ...}:
with lib; {
  nixfiles.modules = {
    endlessh-go.enable = mkForce false;
    node-exporter.enable = mkForce false;
    promtail.enable = mkForce false;
  };

  boot.loader.systemd-boot.enable = true;
  fileSystems."/".device = "/dev/null";

  documentation.enable = mkForce false;
}

Consider giving Nix/NixOS a try! <3