feat: add keepassxc

This commit is contained in:
lightly-toasted 2025-08-10 20:21:27 +09:00
parent 091a0711e8
commit 6d64f0b478
5 changed files with 25 additions and 4 deletions

View file

@ -19,6 +19,7 @@
./programs/btop.nix ./programs/btop.nix
./programs/waybar ./programs/waybar
./programs/dunst.nix ./programs/dunst.nix
./programs/keepassxc.nix
]; ];
home = { home = {

View file

@ -9,9 +9,9 @@
OfferToSaveLogins = false; OfferToSaveLogins = false;
PasswordManagerEnabled = false; PasswordManagerEnabled = false;
ExtensionSettings = { ExtensionSettings = {
# C2 Password # KeePassXC-Browser
"c2password@synology.com" = { "keepassxc-browser@keepassxc.org" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/c2-password/latest.xpi"; install_url = "https://addons.mozilla.org/firefox/downloads/latest/keepassxc-browser/latest.xpi";
installation_mode = "normal_installed"; installation_mode = "normal_installed";
}; };
# Vimium C # Vimium C

View file

@ -10,7 +10,7 @@
package = pkgs.hyprland; package = pkgs.hyprland;
systemd.enable = false; systemd.enable = false;
settings = { settings = {
exec-once = [ "uwsm app -- firefox" "waybar" ]; exec-once = [ "waybar" "uwsm app -- keepassxc" "uwsm app -- firefox" ];
"$terminal" = "uwsm app -- kitty"; "$terminal" = "uwsm app -- kitty";
"$fileManager" = "uwsm app -- thunar"; "$fileManager" = "uwsm app -- thunar";

View file

@ -0,0 +1,19 @@
{
programs.keepassxc = {
enable = true;
settings = {
Browser = {
Enabled = true;
UpdateBinaryPath = false;
AllowLocalhostWithPasskeys = true;
};
SSHAgent.Enabled = true;
GUI = {
MinimizeToTray = true;
MinimizeOnStartup = true;
MinimizeOnClose = true;
ShowTrayIcon = true;
};
};
};
}

View file

@ -14,4 +14,5 @@
]; ];
}; };
programs.xfconf.enable = true; programs.xfconf.enable = true;
programs.ssh.startAgent = true;
} }