about summary refs log tree commit diff
path: root/machines/adax/configuration.nix
blob: 0533f2ded5dc5ef1e64fe4f818f21a6b38a03fe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ config, pkgs, ... }:

{

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


  networking.hostName = "adax";

  environment.systemPackages = with pkgs; [
  ];

  # https://sgt.hootr.club/molten-matter/nix-distributed-builds/
  boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
  services.openssh.enable = true;
  users.users.bob = {
    description = "Bob the Builder";
    isNormalUser = true;
    createHome = true;
    shell = "/bin/sh";
  };

}