blob: 388fa603b2680b12abc396ffa3f7958372f3ac36 (
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
28
|
{ 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;
nix.trustedUsers = [ "bob" ];
users.users.bob = {
description = "Bob the Builder";
isNormalUser = true;
createHome = true;
shell = "/bin/sh";
};
}
|