mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 11:35:41 +00:00
feat: add keepassxc
This commit is contained in:
parent
091a0711e8
commit
6d64f0b478
5 changed files with 25 additions and 4 deletions
|
@ -19,6 +19,7 @@
|
|||
./programs/btop.nix
|
||||
./programs/waybar
|
||||
./programs/dunst.nix
|
||||
./programs/keepassxc.nix
|
||||
];
|
||||
|
||||
home = {
|
||||
|
|
|
@ -9,9 +9,9 @@
|
|||
OfferToSaveLogins = false;
|
||||
PasswordManagerEnabled = false;
|
||||
ExtensionSettings = {
|
||||
# C2 Password
|
||||
"c2password@synology.com" = {
|
||||
install_url = "https://addons.mozilla.org/firefox/downloads/latest/c2-password/latest.xpi";
|
||||
# KeePassXC-Browser
|
||||
"keepassxc-browser@keepassxc.org" = {
|
||||
install_url = "https://addons.mozilla.org/firefox/downloads/latest/keepassxc-browser/latest.xpi";
|
||||
installation_mode = "normal_installed";
|
||||
};
|
||||
# Vimium C
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
package = pkgs.hyprland;
|
||||
systemd.enable = false;
|
||||
settings = {
|
||||
exec-once = [ "uwsm app -- firefox" "waybar" ];
|
||||
exec-once = [ "waybar" "uwsm app -- keepassxc" "uwsm app -- firefox" ];
|
||||
|
||||
"$terminal" = "uwsm app -- kitty";
|
||||
"$fileManager" = "uwsm app -- thunar";
|
||||
|
|
19
home/toast/programs/keepassxc.nix
Normal file
19
home/toast/programs/keepassxc.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -14,4 +14,5 @@
|
|||
];
|
||||
};
|
||||
programs.xfconf.enable = true;
|
||||
programs.ssh.startAgent = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue