This commit is contained in:
Dustin D Swan 2019-04-14 15:17:32 -04:00
parent c9cc6a70bf
commit 94e2435f49
No known key found for this signature in database
GPG key ID: AB49BD6B2B3A6377
2 changed files with 28 additions and 13 deletions

View file

@ -1,6 +1,10 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
bat
];
home.sessionVariables = {
EDITOR = "vim";
BROWSER = "firefox";
@ -129,4 +133,15 @@
customRC = builtins.readFile ~/dotfiles/vimrc;
};
};
programs.htop.enable = true;
programs.jq.enable = true;
programs.emacs.enable = true;
programs.keychain = {
enable = true;
enableZshIntegration = true;
inheritType = "any";
agents = ["gpg" "ssh"];
keys = ["id_rsa" "2B3A6377"];
};
}