.dotfiles/pkgs/fhs/default.nix
Leon Schwarzäugl ad2241586e
Some checks are pending
Flake check / Check flake (push) Waiting to run
chore: flake maintenance
2025-09-23 18:43:44 +02:00

11 lines
276 B
Nix

{ name, pkgs, ... }:
let
base = pkgs.appimageTools.defaultFhsEnvArgs;
in
pkgs.buildFHSEnv (base // {
inherit name;
targetPkgs = pkgs: (base.targetPkgs pkgs) ++ [ pkgs.pkg-config ];
profile = "export FHS=1";
runScript = "zsh";
extraOutputsToInstall = [ "dev" ];
})