mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 15:45:39 +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/btop.nix
|
||||||
./programs/waybar
|
./programs/waybar
|
||||||
./programs/dunst.nix
|
./programs/dunst.nix
|
||||||
|
./programs/keepassxc.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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";
|
||||||
|
|
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.xfconf.enable = true;
|
||||||
|
programs.ssh.startAgent = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue