summaryrefslogtreecommitdiff
path: root/hosts/common.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common.nix')
-rw-r--r--hosts/common.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/hosts/common.nix b/hosts/common.nix
index 3028f6d..035dbcf 100644
--- a/hosts/common.nix
+++ b/hosts/common.nix
@@ -27,6 +27,36 @@
flake = "/home/${user}/.config/beeSystems";
};
+ # programs.ssh.extraConfig = ''
+ # Host eu.nixbuild.net
+ # PubkeyAcceptedKeyTypes ssh-ed25519
+ # ServerAliveInterval 60
+ # IPQoS throughput
+ # IdentityFile /home/bee/my-nixbuild-key
+ # '';
+ #
+ # programs.ssh.knownHosts = {
+ # nixbuild = {
+ # hostNames = [ "eu.nixbuild.net" ];
+ # publicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPIQCZc54poJ8vqawd8TraNryQeJnvH1eLpIDgbiqymM";
+ # };
+ # };
+ #
+ # nix = {
+ # distributedBuilds = true;
+ # buildMachines = [
+ # {
+ # hostName = "eu.nixbuild.net";
+ # system = "x86_64-linux";
+ # maxJobs = 100;
+ # supportedFeatures = [
+ # "benchmark"
+ # "big-parallel"
+ # ];
+ # }
+ # ];
+ # };
+
boot.loader = {
efi.canTouchEfiVariables = true;
timeout = 50;