Compare commits

...

2 Commits

Author SHA1 Message Date
d7844c641c ajout du service locate (non activé dans base) 2016-05-08 18:20:15 +02:00
f0c5ce1e8c ajout d'alias git 2016-05-08 17:51:39 +02:00
2 changed files with 19 additions and 1 deletions

View File

@@ -7,9 +7,16 @@
status = auto
[alias]
a = add -p
st = status
ci = commit
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]
default = simple
[core]

11
locate.nix Normal file
View File

@@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
imports = [
];
services.locate= {
enable = true;
interval = "hourly";
};
}