add fhs bash for stubborn projects

This commit is contained in:
2026-06-22 15:49:26 +02:00
parent 65253db075
commit 0194ac2c30
3 changed files with 17 additions and 0 deletions
+1
View File
@@ -7,5 +7,6 @@
./dev.nix
./gaming.nix
./plasma.nix
./fhsBash.nix
];
}
+15
View File
@@ -0,0 +1,15 @@
{ config, lib, pkgs, osConfig, ... }:
{
options.lumpiastyHome.fhs = lib.mkEnableOption "FHS bash wrapper";
config = lib.mkIf (config.lumpiastyHome.fhs) {
home.packages = [
(pkgs.buildFHSEnv {
name = "fhs";
targetPkgs = p: [];
runScript = "bash";
})
];
};
}
+1
View File
@@ -8,6 +8,7 @@
enablePcApps = osConfig.lumpiasty.pc;
dev = osConfig.lumpiasty.pc;
gaming = osConfig.lumpiasty.gaming;
fhs = osConfig.lumpiasty.pc;
};
home.stateVersion = "24.05";