First pass at enabling remote builds
This commit is contained in:
parent
364f469dea
commit
7b58b0e2c0
|
@ -44,6 +44,7 @@
|
||||||
useUserPackages = true;
|
useUserPackages = true;
|
||||||
users.tsv = import users/tsv/ritchie.nix;
|
users.tsv = import users/tsv/ritchie.nix;
|
||||||
users.foxsoft = import users/foxsoft/home.nix;
|
users.foxsoft = import users/foxsoft/home.nix;
|
||||||
|
users.root = import users/root/home.nix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
../shared/shared-configuration.nix
|
../shared/shared-configuration.nix
|
||||||
./kernighan-hardware.nix
|
./kernighan-hardware.nix
|
||||||
./services/nginx.nix
|
./services/nginx.nix
|
||||||
./services/home_assistant.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
|
@ -39,4 +38,17 @@
|
||||||
git
|
git
|
||||||
vim
|
vim
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nix.buildMachines = [ {
|
||||||
|
hostName = "kernighan";
|
||||||
|
system = "x86_64-linux";
|
||||||
|
protocol = "ssh-ng";
|
||||||
|
maxJobs = 1;
|
||||||
|
speedFactor = 2;
|
||||||
|
supportedFeatures = [ "nixos-test" ];
|
||||||
|
} ];
|
||||||
|
nix.distributedBuilds = true;
|
||||||
|
nix.extraOptions = ''
|
||||||
|
builders-use-substitutes = true
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,11 @@
|
||||||
|
|
||||||
time.timeZone = "Europe/London";
|
time.timeZone = "Europe/London";
|
||||||
|
|
||||||
users.groups.tmux.gid = 1000; # Used for tmux pairing
|
users.groups = {
|
||||||
|
tmux.gid = 1000; # Used for tmux pairing
|
||||||
|
nixremote = {};
|
||||||
|
};
|
||||||
|
|
||||||
systemd.tmpfiles.rules = [
|
systemd.tmpfiles.rules = [
|
||||||
"d /var/tmux_share 2770 tsv tmux"
|
"d /var/tmux_share 2770 tsv tmux"
|
||||||
];
|
];
|
||||||
|
@ -37,12 +41,24 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
users.users.nixremote = {
|
||||||
|
createHome = true;
|
||||||
|
uid = null;
|
||||||
|
isNormalUser = true;
|
||||||
|
description = "For remote Nix builds";
|
||||||
|
openssh.authorizedKeys.keyFiles = [
|
||||||
|
../../users/nixremote/authorized_keys
|
||||||
|
];
|
||||||
|
homeMode = "500";
|
||||||
|
group = "nixremote";
|
||||||
|
};
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
extraOptions = "experimental-features = nix-command flakes";
|
extraOptions = "experimental-features = nix-command flakes";
|
||||||
package = pkgs.nixFlakes;
|
package = pkgs.nixFlakes;
|
||||||
settings = {
|
settings = {
|
||||||
auto-optimise-store = true;
|
auto-optimise-store = true;
|
||||||
trusted-users = [ "root" "tsv" ];
|
trusted-users = [ "root" "tsv" "nixremote" ];
|
||||||
};
|
};
|
||||||
gc = {
|
gc = {
|
||||||
automatic = true;
|
automatic = true;
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDBQw4hvjp+7VSlwmyYhh4fcnU8JWMlVrQNYmKezcyCm77Q5QN+e2gKb7A0RAitzdDYX1GL7v0bvHGUX9aUyVfGXe7XjF7u+3BNEqgod32TXRzOPMCdEeILy+0/JGhhPB4x3APN6CHK6m6IUX8JnrL1lBDaX0vdqTkVc3OiPmqF7pgeuyxcdnZuawFWyPUA9qc3riazkw0Is5yAysMC9UF/AreIRCDeI2ZBWthTNTXWYvmJaGftDYvUdlLHbxcxbj2VOHVOoG0H6B+l/loV3nhmbywKf61E9ImsDxncJ2fpDo6eKY+Ub/NLOceq4dKEZUju/ffnbL4a2tw5vhz6PbVn9RoXQhP4RCOCKMl+Nl86zmcJzGt+GcsSbjK/ZtygjKFAa38p+nYBMoC+NoxoHF0/xIJHfbDltJF1yN+2NBkK7BJH0dQ0jwx9rbcHDFjwqpvlqAIjlh1WG4oNEIVatr1kpm3z0ELL3k7+3AGx0XPsi60okRKp6mci7kUlhjrT178= root@kernighan
|
|
@ -0,0 +1,6 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
home.stateVersion = "22.11";
|
||||||
|
home.file.".ssh/config".source = ./ssh/config;
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
Host ritchie
|
||||||
|
HostName 192.168.40.192
|
||||||
|
Port 2222
|
||||||
|
IdentitiesOnly yes
|
||||||
|
IdentityFile /root/.ssh/nixremote
|
||||||
|
User nixremote
|
||||||
|
StrictHostKeyChecking=accept-new
|
|
@ -1,4 +1,6 @@
|
||||||
font_family JetBrainsMonoNL NFM Light
|
font_family JetBrainsMonoNL NFM Light
|
||||||
|
italic_font Source Code Pro
|
||||||
|
bold_italic_font Source Code Pro
|
||||||
font_size 10.0
|
font_size 10.0
|
||||||
include gruvbox_dark_soft.conf
|
include gruvbox_dark_soft.conf
|
||||||
background_opacity 0.9
|
background_opacity 0.9
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
aaxtomp3 # For converting Audible files
|
aaxtomp3 # For converting Audible files
|
||||||
|
alacritty
|
||||||
anki
|
anki
|
||||||
audible-cli
|
audible-cli
|
||||||
bitwarden
|
bitwarden
|
||||||
|
|
|
@ -7,8 +7,8 @@ bind-key C-o last-window
|
||||||
set-option -g prefix C-o
|
set-option -g prefix C-o
|
||||||
unbind-key C-b
|
unbind-key C-b
|
||||||
|
|
||||||
set -g default-terminal "tmux-256color"
|
set -g default-terminal "tmux"
|
||||||
set -as terminal-features ",xterm-256color:RGB"
|
set -as terminal-features ",kitty:RGB"
|
||||||
|
|
||||||
set -g history-limit 10000
|
set -g history-limit 10000
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue