aboutsummaryrefslogtreecommitdiff
path: root/nix/modules/home
diff options
context:
space:
mode:
Diffstat (limited to 'nix/modules/home')
-rw-r--r--nix/modules/home/secrets.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/nix/modules/home/secrets.nix b/nix/modules/home/secrets.nix
new file mode 100644
index 0000000..64eab73
--- /dev/null
+++ b/nix/modules/home/secrets.nix
@@ -0,0 +1,19 @@
+{ lib, config, pkgs, inputs, ... }:
+{
+ imports = [
+ ../vars.nix
+ ];
+
+ options = {
+ secrets.enable = lib.mkEnableOption "enables encrypted secrets on system";
+ };
+
+ config = lib.mkIf config.secrets.enable {
+ home-manager = {
+ sharedModules = [
+ inputs.sops-nix.homeManagerModules.sops
+ ];
+ users."${user.user}" = {};
+ };
+ };
+}