summaryrefslogtreecommitdiff
path: root/users/user-common.nix
diff options
context:
space:
mode:
authorJakub Stachurski <j.stachurski@student.utwente.nl>2025-11-05 01:29:41 +0100
committerJakub Stachurski <j.stachurski@student.utwente.nl>2025-11-05 21:23:19 +0100
commit72a532244594a370f597babf700fb013123d8c17 (patch)
tree0cdfcd4dea9cf3696c4f5c131c0e15283a328e43 /users/user-common.nix
parent466adabc7229bda8119fa27820ceea659979b3f5 (diff)
Secrets via nixos-sops, caldav and fixed virt
Diffstat (limited to 'users/user-common.nix')
-rw-r--r--users/user-common.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/users/user-common.nix b/users/user-common.nix
index 4b60044..b6da2bb 100644
--- a/users/user-common.nix
+++ b/users/user-common.nix
@@ -1,4 +1,4 @@
-{pkgs, config, ...}: {
+{pkgs, config, inputs, ...}: {
# Pass host config to HM (Common config)
# TODO: Move this somewhere else.
home-manager = {
@@ -11,6 +11,7 @@
_module.args.hostconfig = config;
})
+ inputs.sops-nix.homeManagerModules.sops
];
};
}