Replaced hardcoded "h" username references with variables: - hosts/vm: use username variable for secrets.username - home configs: use username variable in bash initExtra paths - keepassxc: update comment to use $HOME instead of /home/h 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
12 lines
279 B
Nix
12 lines
279 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.keepassxc = {
|
|
enable = true;
|
|
settings = {
|
|
Browser.Enabled = true;
|
|
};
|
|
};
|
|
# programs.firefox.nativeMessagingHosts = [ pkgs.keepassxc ]; # FIXME: Resolve 'Access error for config file $HOME/.config/keepassxc/keepassxc.ini' error
|
|
}
|