feat[client]: use dgx as remote build host

This commit is contained in:
Leon Schwarzäugl 2025-11-25 19:51:39 +01:00
parent c26814f64e
commit 4780f50bd1
Signed by: swarsel
GPG key ID: 26A54C31F2A4FD84
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"
'';
};
};
}

View file

@ -8,6 +8,7 @@
atuin = lib.mkDefault true;
autotiling = lib.mkDefault false;
batsignal = lib.mkDefault false;
bash = lib.mkDefault true;
blueman-applet = lib.mkDefault true;
desktop = lib.mkDefault false;
direnv = lib.mkDefault true;