about summary refs log tree commit diff
path: root/machines/labnet/website-vm.nix
blob: 604674d4919e1f238b7d1ae94559f5f252fe8e50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# stub for the openlab website VM, which isn’t a nixos,
# but still needs some stuff built.
{ pkgs, lib, config, ... }:

{
  environment.systemPackages = with pkgs; [
    vuizvui.openlab.gitit
  ];

  # dummy values
  fileSystems."/".label = "root";
  boot.loader.grub.device = "nodev";
}