diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-01-26 18:40:58 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2021-01-26 18:43:21 +0100 |
commit | c1a819bfe873d266c748429eabaa0603f07c3120 (patch) | |
tree | c488e27732751283b9d30d9d469d95643c7f6d00 /machines/adax | |
parent | 0af8015d7fe3f7f196e998d9285347259eb67639 (diff) | |
download | dots-c1a819bfe873d266c748429eabaa0603f07c3120.tar.gz dots-c1a819bfe873d266c748429eabaa0603f07c3120.zip |
Add bob the builder
Diffstat (limited to 'machines/adax')
-rwxr-xr-x | machines/adax/configuration.nix | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/machines/adax/configuration.nix b/machines/adax/configuration.nix index 57b80d6..0533f2d 100755 --- a/machines/adax/configuration.nix +++ b/machines/adax/configuration.nix @@ -5,12 +5,23 @@ imports = [ ../base.nix ../pl.nix - ../../modules/larbs.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"; + }; + } |