| 123456789101112131415161718192021222324 |
- {
- "..." = "cd ../..";
- "...." = "cd ../../..";
- la = "ls -la";
- # Git stuff
- g = "git";
- gco = "git checkout ";
- gcob = "git checkout -b ";
- ghic = "gh issue create --body '' ";
- # nix stuff
- hmb = "nix run github:nix-community/home-manager -- build --flake .#(whoami)@(hostname)";
- hms = "nix run github:nix-community/home-manager -- switch --flake .#(whoami)@(hostname)";
- home-manager = "nix run github:nix-community/home-manager --";
- drb = "nix run github:lnl7/nix-darwin -- build --flake .#(hostname)";
- drs = "nix run github:lnl7/nix-darwin -- switch --flake .#(hostname)";
- nrb = "nixos-rebuild build --flake .#(hostname)";
- nrs = "nixos-rebuild switch --flake .#(hostname)";
- }
|