config

NixOS config
Log | Files | Refs | README | LICENSE

tmuxbash.nix (164B) - Raw


      1 {
      2   tmux,
      3   bash,
      4   writeShellApplication,
      5   ...
      6 }:
      7 writeShellApplication {
      8   name = "tmuxbash";
      9   text = ''
     10     ${tmux}/bin/tmux
     11     exec ${bash}/bin/bash
     12   '';
     13 }