summaryrefslogtreecommitdiff
path: root/components/programs/keepassxc.nix
diff options
context:
space:
mode:
authorLeonardo <noreply@leoflo.me>2026-02-28 16:27:59 +0100
committerLeonardo <noreply@leoflo.me>2026-02-28 19:02:07 +0100
commitbb11479130b0988e93408aa917cfc872d427d95f (patch)
tree58d37004d9529f927fcab0a5672bc6697d9b3c24 /components/programs/keepassxc.nix
parent1507e4e369bd73b85f191fef20a7509283a418aa (diff)
downloadnixos-bb11479130b0988e93408aa917cfc872d427d95f.tar.gz
nixos-bb11479130b0988e93408aa917cfc872d427d95f.zip
nuovo layout
Diffstat (limited to 'components/programs/keepassxc.nix')
-rw-r--r--components/programs/keepassxc.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/components/programs/keepassxc.nix b/components/programs/keepassxc.nix
new file mode 100644
index 0000000..7211364
--- /dev/null
+++ b/components/programs/keepassxc.nix
@@ -0,0 +1,33 @@
+{lib, config, ...}: {
+ options.keepassxc.enable = lib.mkEnableOption "KeepassXC's config";
+
+ config = lib.mkIf config.keepassxc.enable {
+ xdg.autostart.enable = true;
+
+ programs.keepassxc = {
+ enable = true;
+ autostart = true;
+
+ settings = {
+ Browser.Enabled=true;
+ FdoSecrets.Enabled = true;
+
+ GUI = {
+ MinimizeOnStartup = true;
+ MinimizeOnClose = true;
+
+ ApplicationTheme = "dark";
+ HideUsernames = true;
+ TrayIconAppearance = "monochrome-light";
+ };
+
+ PasswordGenerator = {
+ Length = 128;
+ LowerCase = true;
+ UpperCase = true;
+ SpecialChars = true;
+ };
+ };
+ };
+ };
+}