{ inputs, ... }: { flake.modules.homeManager.base = { pkgs, ... }: { home.packages = let name = "zet"; in [ (pkgs.writeShellApplication { inherit name; runtimeInputs = with pkgs; [ bashInteractive coreutils fzf git ]; text = builtins.readFile "${inputs.zet}/${name}"; }) ]; }; }