Compare commits

..

No commits in common. "1b94cf91f453adba5a111f1d002395b2018c976b" and "134dcdeab2f8d420a19b0c46aa2c4291725ef260" have entirely different histories.

3 changed files with 3 additions and 7 deletions

View file

@ -16,7 +16,6 @@
devices = {
Lenni = { id = "XS6NR2Q-DHVB5G4-P43CHWR-TVBIY5A-FCIS7CU-S5UVNZA-5YPJYST-2EO2GAG"; };
Puenktchen = { id = "VP3YVIM-JNSZTXV-7AS7FA2-3W5QKH6-XOWXX7N-STUR4JR-PR6SPCV-HJZMAAN"; };
Damin = { id = "HAGKFGG-EMCPKHG-Y7V2ACJ-DJVAIIA-A6TNGTQ-VWPB3F5-PES673W-W2YBJAD"; };
};
folders = {
"Documents" = {
@ -27,7 +26,7 @@
"Enpass" = {
id = "ciksm-xsw4m";
path = "/mnt/data/services/syncthing/data/Enpass";
devices = [ "Lenni" "Puenktchen" "Damin" ];
devices = [ "Lenni" "Puenktchen" ];
};
"Pictures" = {
id = "po4qj-q9t0t";

View file

@ -4,7 +4,7 @@
nix.buildMachines = [ {
hostName = "Anton";
sshUser = "builder";
systems = [ "x86_64-linux" "aarch64-linux" ];
system = "x86_64-linux";
protocol = "ssh";
# if the builder supports building for multiple architectures,
# replace the previous line by, e.g.

View file

@ -1,4 +1,4 @@
{ config, ... }:
{ ... }:
{
users.users.builder = {
group = "builder";
@ -8,7 +8,4 @@
};
users.groups.builder = { };
nix.settings.trusted-users = [ "builder" "willifan" ];
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
nix.settings.extra-platforms = config.boot.binfmt.emulatedSystems;
}