Home

dotnix @9403dfa83eed5bc5ef648097dd2da3eef5208b25 - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / home / nogui / nushell / autoload / tmp.nu
- raw -
1
2
3
4
5
6
7
8
module tmp {
  # Create a temporary directory and cd in to it
  export def --env main []: nothing -> nothing {
    let t = mktemp --directory
    cd $t
  }
}
use tmp *