mirror of https://github.com/wlcx/home.git
Add rustup, git commit amend alias
This commit is contained in:
parent
6e6154210c
commit
d0cdad47fb
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ pkgs, ... }:
|
||||
|
||||
let mypkgs = (import ../modules/pkgs.nix { inherit pkgs; });
|
||||
in {
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
a = "add";
|
||||
ap = "add -p";
|
||||
c = "commit";
|
||||
ca = "commit --amend";
|
||||
can = "commit --amend --no-edit";
|
||||
cm = "commit -m";
|
||||
co = "checkout";
|
||||
|
|
|
@ -1 +1 @@
|
|||
{ dev = { ... }: { imports = [ ./default.nix ./git.nix ./macs.nix ]; }; }
|
||||
{ dev = { ... }: { imports = [ ./default.nix ./git.nix ./macs.nix ./rust.nix ]; }; }
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
{ pkgs, ... }: { home.packages = [ pkgs.rustup ]; }
|
Loading…
Reference in New Issue