summaryrefslogtreecommitdiff
path: root/home
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-10-23 03:17:47 -0700
committerFuwn <[email protected]>2024-10-23 03:17:47 -0700
commite93bd762a581458b02bd0e69f26a1d003f795ec4 (patch)
treece2d121a90e1b93d11e0e527b2ff3c2d4f5e3a64 /home
parenthome: move proton packages to module (diff)
downloadnixos-config-e93bd762a581458b02bd0e69f26a1d003f795ec4.tar.xz
nixos-config-e93bd762a581458b02bd0e69f26a1d003f795ec4.zip
home: move encryption subset to shared
Diffstat (limited to 'home')
-rw-r--r--home/ebisu/core/system/encryption/default.nix6
-rw-r--r--home/ebisu/shared/default.nix1
-rw-r--r--home/ebisu/shared/encryption.nix7
3 files changed, 8 insertions, 6 deletions
diff --git a/home/ebisu/core/system/encryption/default.nix b/home/ebisu/core/system/encryption/default.nix
index 3cfbcf3..d2564b2 100644
--- a/home/ebisu/core/system/encryption/default.nix
+++ b/home/ebisu/core/system/encryption/default.nix
@@ -1,12 +1,6 @@
-{ pkgs, ... }:
{
imports = [
# ./bitwarden.nix
./proton.nix
];
-
- home.packages = with pkgs; [
- libsForQt5.ksshaskpass
- seahorse
- ];
}
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
+ ];
+}