1
1
Fork 1
mirror of https://github.com/oddlama/nix-config.git synced 2025-10-11 07:10:39 +02:00

fix: minor typos

This commit is contained in:
oddlama 2022-12-16 02:11:26 +01:00
parent 5f6012faf1
commit 8643cd718a
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
4 changed files with 9 additions and 12 deletions

View file

@ -1,8 +1,4 @@
{
lib,
pkgs,
...
}: {
{lib, ...}: {
programs.gitui.enable = true;
programs.git = {
enable = true;
@ -20,7 +16,7 @@
};
aliases = {
unstash = "stash pop";
s = status;
s = "status";
tags = "tag -l";
t = "tag -s -m ''";
ci = "commit -v -S";
@ -33,6 +29,6 @@
gs = "git status";
ga = "git add";
gc = "git commit -v -S";
gca = "${gci} --amend";
gca = "${gc} --amend";
};
}