about summary refs log tree commit diff
path: root/machines/adax/configuration.nix
blob: 57b80d6c33e7db5a732f2a6cf945d39f8f554e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, pkgs, ... }:

{

  imports = [
    ../base.nix
    ../pl.nix
    ../../modules/larbs.nix
  ];

  networking.hostName = "adax";

  environment.systemPackages = with pkgs; [
  ];

}