chore(flakes): update Flake lockfile and configs

- Updated multiple Flake lockfile entries to the latest revisions for improved consistency with upstream changes.
- Removed redundant `sshKey` fields from builder configurations in `nixbuild.nix`.
- Added `Nix` path initialization for fish shell SSH sessions and refactored mouse bindings in `default.nix`.
This commit is contained in:
Harald Hoyer 2025-11-13 11:36:46 +01:00
parent 3f6c1df78c
commit cd86d39ec1
3 changed files with 67 additions and 75 deletions

View file

@ -11,7 +11,6 @@ with lib.metacfg;
maxJobs = 4;
speedFactor = 3;
sshUser = "harald";
sshKey = "/etc/ssh/nix-builder-key";
}
{
hostName = "rialo";
@ -19,7 +18,6 @@ with lib.metacfg;
maxJobs = 4;
speedFactor = 3;
sshUser = "harald";
sshKey = "/etc/ssh/nix-builder-key";
}
{
hostName = "sgx";
@ -27,23 +25,6 @@ with lib.metacfg;
maxJobs = 4;
speedFactor = 1;
sshUser = "harald";
sshKey = "/etc/ssh/nix-builder-key";
}
{
hostName = "sgx";
system = "x86_64-linux";
maxJobs = 4;
speedFactor = 1;
sshUser = "harald";
sshKey = "/etc/ssh/nix-builder-key";
}
{
hostName = "sgx";
system = "x86_64-linux";
maxJobs = 4;
speedFactor = 1;
sshUser = "harald";
sshKey = "/etc/ssh/nix-builder-key";
}
];
@ -57,4 +38,11 @@ with lib.metacfg;
builders-use-substitutes = true;
};
# Ensure Nix is in PATH for SSH sessions
programs.fish.shellInit = ''
if [ -e /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh ]; then
. /nix/var/nix/profiles/default/etc/profile.d/nix-daemon.sh
fi
'';
}