From d1f454bba223b09b95368d067707da4480a45e10 Mon Sep 17 00:00:00 2001 From: xenia Date: Thu, 27 Jun 2024 12:41:01 +0200 Subject: [PATCH] KeePassXC on linux --- home/graphical.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home/graphical.nix b/home/graphical.nix index 8217bdb8..c392ad72 100644 --- a/home/graphical.nix +++ b/home/graphical.nix @@ -20,7 +20,10 @@ let in rec { home.packages = with pkgs; [ fira-code ibm-plex - ] ++ (if pkgs.stdenv.isDarwin then [alloy6-mac] else [pkgs.alloy6]); + ] + ++ (if pkgs.stdenv.isDarwin then [alloy6-mac] else [pkgs.alloy6]) + ++ (if pkgs.stdenv.isDarwin then [] else [pkgs.keepassxc]) + ; programs.alacritty = alacritty; }