This commit is contained in:
Alexander Szczepanski
2021-12-02 08:43:20 +01:00
parent 527b387c2e
commit c9414f1fbd
14 changed files with 435 additions and 123 deletions

View File

@@ -26,7 +26,6 @@ in
home-manager.users.alex = { pkgs, ... }: {
home = {
enableNixpkgsReleaseCheck = false;
packages = with unstable.pkgs; [
exa
broot
@@ -44,10 +43,22 @@ in
pstree
ranger
sshfs
tree
unrar
youtube-dl
];
sessionPath = [
"$HOME/.npm-packages"
"$HOME/.bin"
];
file = {
".npmrc" = {
source = ../home/npmrc;
};
".bin/git-redate" = {
executable = true;
source = ../home/bin/git-redate;
};
};
};
programs = {