laksjdlakjd

This commit is contained in:
2026-06-08 00:34:11 +02:00
parent e2a0d5c72b
commit ffef7811e1
6 changed files with 9 additions and 4 deletions
+1 -1
View File
@@ -49,7 +49,7 @@
};
# based on https://github.com/NixOS/nixpkgs/blob/d89fc19e405cb2d55ce7cc114356846a0ee5e956/nixos/modules/programs/ccache.nix#L49-L67
security.wrappers.nix-sccache =
security.wrappers."nix-sccache" =
let
cfg = config.programs.ccache;
in
+1 -1
View File
@@ -7,7 +7,7 @@
./../../secrets
./binary-caches.nix
./nix.nix
# ./lix.nix
# ./lix.nix # too slow eval...
./locale-no.nix
./upgrade-diff.nix
./vm-variant.nix
+1 -1
View File
@@ -78,7 +78,7 @@ ssh.listenPublicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH03MEINNnjBvtmvN2QsC
["garp.tail9aac63.ts.net"] # gtx 3060 ti
aliases = [ "garp.pbsds.net" ]
buildMachine.systems = ["x86_64-linux", "i686-linux", "riscv64-linux"]
buildMachine.maxJobs = 2 # 8 threads 64GB
# buildMachine.maxJobs = 2 # 8 threads 64GB
buildMachine.speedFactor = 4 # i7-6700
buildMachine.supportedFeatures = ["kvm", "nixos-test", "cuda" ] #, "ccache" ] # no ccache because we have yet to setup distributed ccache
buildMachine.protocol = "ssh-ng"
@@ -25,6 +25,7 @@ confirm-close-surface = false
clipboard-paste-protection = false
clipboard-paste-bracketed-safe = true
# even if this is now default of on gnome, keep the behaviour for ghostty
# https://github.com/ghostty-org/ghostty/pull/12443
copy-on-select = true
# 50MB, default is 10MB. The buffer is preallocated
scrollback-limit = 50000000
@@ -1,7 +1,7 @@
destore() {
for dst in "$@"; do
local MAYBESUDO=""
if test ! -w "$(dirname $(realpath --no-symlinks $dst))" ; then
if test ! -w "$(dirname "$(realpath --no-symlinks $dst)")" ; then
MAYBESUDO="sudo"
sudo true || {
echo >&2 "ERROR: could not destore '$dst' due to lack of sudo"
@@ -1,4 +1,5 @@
{ config, lib, pkgs, ... }:
lib.mkMerge [
{
home.shellAliases.tssh = "ssh -t";
@@ -40,6 +41,8 @@
controlPersist = "no";
};
programs.ssh.includes = [ "~/.ssh/config.d/*" ];
}
{
programs.ssh.matchBlocks = {
"*".serverAliveInterval = 10;
"*".serverAliveCountMax = 3;
@@ -185,3 +188,4 @@
};
}
]