Skip to content

Commit

Permalink
feat: cdtmp can have an arbitrary name now
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnossiom committed Feb 29, 2024
1 parent 21cae8a commit 729b39c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions home-manager/modules/shell.nix
Expand Up @@ -202,9 +202,11 @@ with lib;

# Quickly get outta here to test something
cdtmp = ''
set -l tmp /tmp/(${getExe pkgs.names})
mkdir $tmp
cd $tmp
set -l name $argv[1] (${getExe pkgs.names})
set -l dir /tmp/$name[1]
mkdir $dir
cd $dir
'';

change-mac = ''
Expand Down

0 comments on commit 729b39c

Please sign in to comment.