about summary refs log tree commit diff
path: root/machines/labnet/gitit-stub.nix
blob: 0e8f7a2d9017e188748f95f1a4432f6002567691 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, pkgs, ... }:

{

  # TODO: create a true channel that only advances if these build.
  environment.systemPackages = [
    pkgs.vuizvui.openlab.gitit
  ];

  fileSystems."/".device = "/dev/null";
  boot.loader.grub.device = "/dev/null";

}