{ flake.modules.homeManager.base = { pkgs, ... }: { home.packages = [ (pkgs.writeShellApplication { name = "zet"; runtimeInputs = with pkgs; [ bashInteractive coreutils fzf ]; text = builtins.readFile ./script.sh; }) ]; }; }