added SOPS

This commit is contained in:
lsoriano-mcm
2025-06-28 21:00:01 -05:00
parent 6fc18f11a5
commit 37e982c983
9 changed files with 44 additions and 10 deletions
+3 -3
View File
@@ -1,12 +1,12 @@
{username, ...}: {
{myConfig, ...}: {
imports = [
];
programs.home-manager.enable = true;
home = {
username = "${username}";
homeDirectory = "/home/${username}";
username = "${myConfig.username}";
homeDirectory = "/home/${myConfig.username}";
packages = [];
sessionVariables = {};
};