mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
21 lines
378 B
Nix
21 lines
378 B
Nix
{ pkgs, lib, identity, ... }: {
|
|
home-manager.useGlobalPkgs = true;
|
|
home-manager.useUserPackages = true;
|
|
home-manager.users.${identity.user} = {
|
|
|
|
home.packages = with pkgs; [
|
|
# neomutt
|
|
qbittorrent
|
|
|
|
# Encryption
|
|
gnupg
|
|
pass
|
|
];
|
|
|
|
home.sessionVariables = {
|
|
NOTES_PATH = "/home/${identity.user}/dev/personal/notes";
|
|
};
|
|
|
|
};
|
|
}
|