10 lines
170 B
Nix
10 lines
170 B
Nix
{ pkgs, config, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
keepassxc
|
|
];
|
|
|
|
# home.sessionPath = [ "${pkgs.keepassxc}/Applications/KeePassXC.app/Contents/MacOS/" ];
|
|
}
|