Added Remotebuild-Config to LoyAdjo
Some checks are pending
/ Check Nix Flake (push) Waiting to run

This commit is contained in:
Kaybee 2024-12-13 01:14:54 +01:00
parent 6ceae80d02
commit 735fae2309
Signed by: kb01
SSH key fingerprint: SHA256:gP6opHVPcRQWO2nBbCcsXmXLtGrxzdRbP+frT4AAJFs

View file

@ -11,6 +11,7 @@
nix.settings = { nix.settings = {
experimental-features = [ "nix-command" "flakes" ]; experimental-features = [ "nix-command" "flakes" ];
substituters = [ "https://cache.games01.kb-one.de" ]; substituters = [ "https://cache.games01.kb-one.de" ];
trusted-users = [ "remotebuild" ];
trusted-public-keys = [ trusted-public-keys = [
"cache.game01.kb-one.de:JF++7CgrasYciQeB5jlziqT5BTjaknEk9cMeh4lQf30=" "cache.game01.kb-one.de:JF++7CgrasYciQeB5jlziqT5BTjaknEk9cMeh4lQf30="
]; ];
@ -20,7 +21,6 @@
"electron-27.3.11" "electron-27.3.11"
]; ];
# Bootloader. # Bootloader.
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.canTouchEfiVariables = true;
@ -84,6 +84,12 @@
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
}; };
users.users.remotebuild = {
isNormalUser = true;
openssh.authorizedKeys.keys = [
];
};
# Enable automatic login for the user. # Enable automatic login for the user.
# services.xserver.displayManager.autoLogin.enable = true; # services.xserver.displayManager.autoLogin.enable = true;
# services.xserver.displayManager.autoLogin.user = "kb"; # services.xserver.displayManager.autoLogin.user = "kb";