This commit is contained in:
twoneis 2025-03-21 19:38:36 +01:00
parent b2f5485fc1
commit bd08882fc8

View file

@ -78,7 +78,15 @@ in {
functions = {
run = {
body = "nix run nixpkgs#$argv[1] -- $argv[2..]";
body = ''
nix run nixpkgs#$argv[1] -- $argv[2..]
'';
};
init_dev = {
body = ''
'';
};
fish_prompt = {
@ -87,6 +95,8 @@ in {
};
shellAbbrs = {
ll = "ls --almost-all --ignore-backups --literal --human-readable --time-style=long-iso -l";
ga = "git add";
gc = "git commit";
gp = "git push";
@ -94,10 +104,9 @@ in {
gpl = "git pull --recurse-submodules";
gst = "git status";
repl = "nix repl --expr 'import <nixpkgs>{}'";
nrb = "sudo nixos-rebuild switch --cores 0 --flake .";
nd = "nix develop";
repl = "nix repl --expr 'import <nixpkgs>{}'";
};
};
};