mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
6.3 kernel
This commit is contained in:
parent
c55a1c8e4b
commit
eb082ffc26
2 changed files with 12 additions and 6 deletions
|
|
@ -40,6 +40,8 @@ _: let
|
|||
|
||||
nixpkgs.hostPlatform = mkDefault "aarch64-linux";
|
||||
|
||||
boot.kernelPackages = pkgs.linuxKernel.kernels.linux_6_3
|
||||
|
||||
system.stateVersion = "22.11";
|
||||
|
||||
security.sudo.extraRules = [
|
||||
|
|
|
|||
|
|
@ -17,22 +17,24 @@ _: let
|
|||
home-manager.users.root.programs.ssh = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
Host renko
|
||||
Host orb
|
||||
HostName 127.0.0.1
|
||||
Port 32222
|
||||
User kat
|
||||
User default
|
||||
IdentityFile /Users/kat/.orbstack/ssh/id_ed25519
|
||||
ProxyCommand env HOME=/Users/kat '/Applications/OrbStack.app/Contents/Frameworks/OrbStack Helper (VM).app/Contents/MacOS/OrbStack Helper (VM)' ssh-proxy-fdpass
|
||||
ProxyUseFdpass yes
|
||||
'';
|
||||
};
|
||||
|
||||
nix.buildMachines = [
|
||||
{
|
||||
hostName = "renko";
|
||||
hostName = "nixos@orb";
|
||||
system = "aarch64-linux";
|
||||
supportedFeatures = ["nixos-test" "benchmark" "big-parallel" "kvm"];
|
||||
}
|
||||
{
|
||||
hostName = "renko";
|
||||
hostName = "nixos@orb";
|
||||
system = "x86_64-linux";
|
||||
supportedFeatures = ["nixos-test" "benchmark" "big-parallel" "kvm"];
|
||||
}
|
||||
|
|
@ -75,11 +77,13 @@ _: let
|
|||
ssh = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
Host renko
|
||||
Host orb
|
||||
HostName 127.0.0.1
|
||||
Port 32222
|
||||
User kat
|
||||
User default
|
||||
IdentityFile /Users/kat/.orbstack/ssh/id_ed25519
|
||||
ProxyCommand env HOME=/Users/kat '/Applications/OrbStack.app/Contents/Frameworks/OrbStack Helper (VM).app/Contents/MacOS/OrbStack Helper (VM)' ssh-proxy-fdpass
|
||||
ProxyUseFdpass yes
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue