ADD: HomeManager conf files
This commit is contained in:
parent
d738205f0d
commit
7c8f61240d
|
@ -0,0 +1,35 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
userEmail = "alexandre@dri.fr";
|
||||||
|
userName = "Alexandre LUCAZEAU";
|
||||||
|
aliases = {
|
||||||
|
ignore = "!gi() { curl -sL https://www.toptal.com/developers/gitignore/api/$@ ;}; gi";
|
||||||
|
};
|
||||||
|
extraConfig = {
|
||||||
|
"color" = {
|
||||||
|
"ui" = true;
|
||||||
|
};
|
||||||
|
"init" = {
|
||||||
|
defaultBranch = "main";
|
||||||
|
};
|
||||||
|
"color \"diff-highlight\"" = {
|
||||||
|
oldNormal = "red bold";
|
||||||
|
oldHighlight = "red bold 52";
|
||||||
|
newNormal = "green bold";
|
||||||
|
newHighlight = "green bold 22";
|
||||||
|
};
|
||||||
|
"color \"diff\"" = {
|
||||||
|
meta = 11;
|
||||||
|
frag = "magenta bold";
|
||||||
|
commit = "yellow bold";
|
||||||
|
old = "red bold";
|
||||||
|
new = "green bold";
|
||||||
|
whitespace = "red reverse";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
#signing.key = "GPG-KEY-ID";
|
||||||
|
#signing.signByDefault = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,10 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
imports = [
|
||||||
|
./packages.nix
|
||||||
|
./git.nix
|
||||||
|
];
|
||||||
|
home.keyboard = {
|
||||||
|
layout = "fr";
|
||||||
|
variant = "bepo";
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,20 @@
|
||||||
|
{ pkgs, ... }: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
thunderbird
|
||||||
|
vim
|
||||||
|
jq
|
||||||
|
nextcloud-client
|
||||||
|
libreoffice
|
||||||
|
htop
|
||||||
|
neomutt
|
||||||
|
alacritty
|
||||||
|
notmuch
|
||||||
|
#isync
|
||||||
|
zathura
|
||||||
|
rofi
|
||||||
|
pdfarranger
|
||||||
|
simple-scan
|
||||||
|
brightnessctl
|
||||||
|
chromium
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue