Skip to content

Commit

Permalink
Add user pratik.narola (#24)
Browse files Browse the repository at this point in the history
* Create pratik.narola.nix

* Update pratik.narola.nix

* Update default.nix

---------

Co-authored-by: Sridhar Ratnakumar <[email protected]>
  • Loading branch information
Pratiknarola and srid committed Apr 30, 2024
1 parent c0fda40 commit b2f22b2
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions users/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ let
"rohit.singh" = import ./rohit.singh.nix;
"pratyaydeep.ghanta" = import ./pratyaydeep.ghanta.nix;
"mohammad.faisal" = import ./mohammad.faisal.nix;
"pratik.narola" = import ./pratik.narola.nix;
};
in
users
21 changes: 21 additions & 0 deletions users/pratik.narola.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
pubKeys = [
"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDrs8963yf7x8tOH0xSHA3AaWwmbLIG0OAXGb40ttz4DDQTsbRlbI6JfmKBqGb13lnnCOI88eVQv2eFF3uxkf60yA5KgGM9ds7TVrtxrleNk5Jj/ydZ3mdtmj5QksU0FTXfRTBnMk5DBoXBfq1Gr1hdhYNYHaiek3Oc1DtxzWbzFArXSrltYK5ZWdayMnRDwAi1QphXOBIr//B/wtYQ1XDZO7WpZL/vSOdR9ynKM3A72ISv45k9LH2mt/+yxg79K6etSGqi9p2Qpf3/afEleR0dtD27GmXioBDLOw5OMKBdb1ZnScuu6IAiDrB8pDvTA2cvLmfj7z2v0bxvoFwVfeV5mATYXPUCjqKTJbszUC46WYtbdV8T9cRuiNraV5e0Qw53MvYmKllHh+CEGmwuatLaw1/d7h9WiKZrE6KRo+QuS/Gxt6wv/2YoqEhqCigim0eNuSdehofBlegl1p7ZSMYGJoBuPoTRyT+GJfdKczRT0+/upDowFk5vczjizmwJeQ0= [email protected]"
];

homeModule = { pkgs, lib, ... }: {
programs.git = {
userName = "Pratik Narola";
userEmail = "[email protected]";
aliases = {
gco = "git checkout";
gst = "git status";
gc = "git commit";
gpsup = "git push --set-upstream origin";
gb = "git branch";
gl = "git pull";
gpf = "git push --force-with-lease";
};
};
};
}

0 comments on commit b2f22b2

Please sign in to comment.