Split into apps and utils
This commit is contained in:
parent
f1643f2ab3
commit
997e2c2586
3 changed files with 51 additions and 40 deletions
|
@ -4,4 +4,37 @@
|
|||
./vim
|
||||
./zellij
|
||||
];
|
||||
|
||||
home-manager.users.tdpeuter = { pkgs, ... }: {
|
||||
home.packages = with pkgs; [
|
||||
direnv
|
||||
duf
|
||||
git-crypt
|
||||
lynx
|
||||
w3m
|
||||
zenith
|
||||
];
|
||||
|
||||
programs = {
|
||||
direnv = {
|
||||
enable = true;
|
||||
nix-direnv.enable = true;
|
||||
};
|
||||
|
||||
git = {
|
||||
enable = true;
|
||||
userName = "tdpeuter";
|
||||
userEmail = "tibo.depeuter@gmail.com";
|
||||
extraConfig = {
|
||||
core.editor = "vim";
|
||||
};
|
||||
includes = [
|
||||
{
|
||||
path = "~/.gitconfig-ugent";
|
||||
condition = "gitdir:~/Nextcloud/Documenten/UGent";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue