diff --git a/systems/x86_64-linux/LoyAdjo/default.nix b/systems/x86_64-linux/LoyAdjo/default.nix index b2f6043..4ceb0df 100644 --- a/systems/x86_64-linux/LoyAdjo/default.nix +++ b/systems/x86_64-linux/LoyAdjo/default.nix @@ -11,6 +11,7 @@ nix.settings = { experimental-features = [ "nix-command" "flakes" ]; substituters = [ "https://cache.games01.kb-one.de" ]; + trusted-users = [ "remotebuild" ]; trusted-public-keys = [ "cache.game01.kb-one.de:JF++7CgrasYciQeB5jlziqT5BTjaknEk9cMeh4lQf30=" ]; @@ -20,7 +21,6 @@ "electron-27.3.11" ]; - # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; @@ -83,6 +83,12 @@ description = "kB"; extraGroups = [ "networkmanager" "wheel" ]; }; + + users.users.remotebuild = { + isNormalUser = true; + openssh.authorizedKeys.keys = [ + ]; + }; # Enable automatic login for the user. # services.xserver.displayManager.autoLogin.enable = true;