dotfiles/nixos/home.nix

21 lines
378 B
Nix
Raw Normal View History

2022-04-30 16:07:58 +00:00
{ pkgs, lib, identity, ... }: {
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
2022-04-30 16:07:58 +00:00
home-manager.users.${identity.user} = {
2021-08-09 12:19:21 +00:00
2022-04-28 22:55:15 +00:00
home.packages = with pkgs; [
# neomutt
qbittorrent
# Encryption
gnupg
pass
];
home.sessionVariables = {
2022-04-30 21:27:42 +00:00
NOTES_PATH = "/home/${identity.user}/dev/personal/notes";
2022-04-28 22:55:15 +00:00
};
2022-01-22 19:01:32 +00:00
2022-01-13 14:39:48 +00:00
};
2021-08-09 12:19:21 +00:00
}