Compare commits
2 Commits
7150237391
...
4744f74f18
| Author | SHA1 | Date | |
|---|---|---|---|
| 4744f74f18 | |||
| 7e76c6fc28 |
@@ -161,6 +161,7 @@
|
||||
extraSpecialArgs = {
|
||||
inputs = inputs // {
|
||||
nathan = import ./home-manager/nathan;
|
||||
home-manager-config = import ./home-manager;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -1,6 +1,13 @@
|
||||
{ config, lib, pkgs, inputs, ... }: {
|
||||
|
||||
options.sysconfig.remoteBuildClient = with lib; mkOption {
|
||||
type = with types; bool;
|
||||
default = false;
|
||||
};
|
||||
|
||||
config = {
|
||||
sysconfig.remoteBuildClient = true;
|
||||
|
||||
home-manager = {
|
||||
backupFileExtension = ".backup";
|
||||
useUserPackages = true;
|
||||
@@ -43,5 +50,16 @@
|
||||
etcBackupExtension = ".backup";
|
||||
motd = "";
|
||||
};
|
||||
|
||||
nix = {
|
||||
nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
|
||||
extraOptions = ''
|
||||
experimental-features = nix-command flakes
|
||||
builders-use-substitutes = true
|
||||
max-jobs = 0
|
||||
builders = ssh://remote-builder@blunkall.us x86_64-linux,aarch64-linux /run/secrets/remoteBuildKey 1 1 nixos-test,benchmark,big-parallel,kvm - -
|
||||
'';
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user