state Sun Oct 24 09:29:25 PM CEST 2021

This commit is contained in:
Alexander Kobjolke 2021-10-24 21:29:25 +02:00
parent 65146e772d
commit e345e400db
2 changed files with 42 additions and 35 deletions

View file

@ -21,7 +21,7 @@
#unrar
# nix tools
nix-index
nixpkgs-fmt
nixfmt
# misc
fd # better find
file # info about files
@ -30,8 +30,13 @@
gnumake
ripgrep # better grep
sqlite
pass
# pass
pandoc
hledger
hledger-web
hledger-iadd
hledger-ui
smos
# editors
emacs-nox
@ -40,11 +45,14 @@
clang_12
# haskell
ghcid
ghc
cabal2nix
nix-prefetch-git
cabal-install
haskellPackages.cabal-fmt
haskellPackages.stylish-haskell
haskellPackages.ormolu
];
home.extraOutputsToInstall = [ "doc" "info" "devdoc" ];
@ -53,6 +61,16 @@
# "emacs".source = ./emacs.d;
# };
xdg.configFile.tmux = {
target = "tmux/tmux.conf";
text = ''
set -g default-terminal "tmux-256color"
set -g prefix C-z
bind-key C-z send-prefix
set -g renumber-windows on
'';
};
programs = {
direnv = {
enable = true;
@ -61,6 +79,7 @@
enableFlakes = true;
};
enableZshIntegration = true;
enableBashIntegration = true;
};
gh = {
@ -70,12 +89,7 @@
git = {
enable = true;
ignores = [
"*~"
"*.swp"
"result"
"dist-newstyle"
];
ignores = [ "*~" "*.swp" "result" "dist-newstyle" ];
userEmail = "me@failco.de";
userName = "Alexander Kobjolke";
};