Nix configurations for my personal machines (Linux & macOS)

shell: add yarn aliases

ovyerus.com e04cd91f 7e3afba4

verified
+4
+1
modules/default.nix
··· 7 7 programs.home-manager.enable = true; 8 8 home.username = "ovy"; 9 9 home.homeDirectory = "/Users/ovy"; 10 + news.display = "silent"; 10 11 11 12 # You should not change this value, even if you update Home Manager. If you do 12 13 # want to update the value, then make sure to first check the Home Manager
+3
modules/shell/default.nix
··· 26 26 27 27 shellAbbrs = { 28 28 ga = "git add"; 29 + gaa = "git add -A"; 29 30 gc = { 30 31 setCursor = "%"; 31 32 expansion = "git commit -m \\\"%\\\""; ··· 44 45 dc = "docker compose"; 45 46 hm = "home-manager"; 46 47 ncg = "nix-collect-garbage"; 48 + yws = "yarn workspace"; 49 + ywss = "yarn workspaces"; 47 50 ze = "zellij"; 48 51 }; 49 52