feat[client]: use dgx as remote build host

This commit is contained in:
Leon Schwarzäugl 2025-11-25 19:51:39 +01:00 committed by Leon Schwarzäugl
parent 00340a9c01
commit 118f7a2fe8
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,12 @@
{ config, pkgs, lib, ... }:
{
options.swarselmodules.bash = lib.mkEnableOption "bash settings";
config = lib.mkIf config.swarselmodules.bash {
programs.bash = {
bashrcExtra = ''
export PATH="${pkgs.nix}/bin:$PATH"
'';
};
};
}