This commit is contained in:
2025-08-26 11:13:53 -05:00
parent 7e76c6fc28
commit 4744f74f18
2 changed files with 8 additions and 0 deletions

View File

@@ -161,6 +161,7 @@
extraSpecialArgs = {
inputs = inputs // {
nathan = import ./home-manager/nathan;
home-manager-config = import ./home-manager;
};
};

View File

@@ -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;