From 4780f50bd13f310a53b7a67caa5534bb7abc1583 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20Schwarz=C3=A4ugl?= Date: Tue, 25 Nov 2025 19:51:39 +0100 Subject: [PATCH] feat[client]: use dgx as remote build host --- modules/home/common/bash.nix | 12 ++++++++++++ profiles/home/dgxspark/default.nix | 1 + 2 files changed, 13 insertions(+) create mode 100644 modules/home/common/bash.nix diff --git a/modules/home/common/bash.nix b/modules/home/common/bash.nix new file mode 100644 index 0000000..08176f6 --- /dev/null +++ b/modules/home/common/bash.nix @@ -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" + ''; + }; + }; +} diff --git a/profiles/home/dgxspark/default.nix b/profiles/home/dgxspark/default.nix index a0d261a..9a9a4c2 100644 --- a/profiles/home/dgxspark/default.nix +++ b/profiles/home/dgxspark/default.nix @@ -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;