summaryrefslogtreecommitdiff
path: root/home/ebisu/shared
diff options
context:
space:
mode:
Diffstat (limited to 'home/ebisu/shared')
-rw-r--r--home/ebisu/shared/default.nix1
-rw-r--r--home/ebisu/shared/encryption.nix7
2 files changed, 8 insertions, 0 deletions
diff --git a/home/ebisu/shared/default.nix b/home/ebisu/shared/default.nix
index 3a7908a..bd425b7 100644
--- a/home/ebisu/shared/default.nix
+++ b/home/ebisu/shared/default.nix
@@ -3,6 +3,7 @@
./browser
./scripting
./utility
+ ./encryption.nix
./language.nix
];
}
diff --git a/home/ebisu/shared/encryption.nix b/home/ebisu/shared/encryption.nix
new file mode 100644
index 0000000..06b7c90
--- /dev/null
+++ b/home/ebisu/shared/encryption.nix
@@ -0,0 +1,7 @@
+{ pkgs, ... }:
+{
+ home.packages = with pkgs; [
+ libsForQt5.ksshaskpass
+ seahorse
+ ];
+}