Compare commits
2 Commits
542105d6e3
...
d7844c641c
| Author | SHA1 | Date | |
|---|---|---|---|
| d7844c641c | |||
| f0c5ce1e8c |
@@ -7,9 +7,16 @@
|
|||||||
status = auto
|
status = auto
|
||||||
[alias]
|
[alias]
|
||||||
a = add -p
|
a = add -p
|
||||||
st = status
|
|
||||||
ci = commit
|
ci = commit
|
||||||
co = checkout
|
co = checkout
|
||||||
|
ff = pull --ff-only
|
||||||
|
# Show files ignored by git
|
||||||
|
ignored = ls-files -o -i --exclude-standard
|
||||||
|
ls = ls-files
|
||||||
|
st = status
|
||||||
|
# Logs
|
||||||
|
lol = log --graph --decorate --pretty=oneline --abbrev-commit
|
||||||
|
lola = log --graph --decorate --pretty=oneline --abbrev-commit --all
|
||||||
[push]
|
[push]
|
||||||
default = simple
|
default = simple
|
||||||
[core]
|
[core]
|
||||||
|
|||||||
11
locate.nix
Normal file
11
locate.nix
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
];
|
||||||
|
|
||||||
|
services.locate= {
|
||||||
|
enable = true;
|
||||||
|
interval = "hourly";
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user