Compare commits

...

2 Commits

Author SHA1 Message Date
John Lancaster 70b3e2ccff option tweaks 2026-03-22 10:42:13 -05:00
John Lancaster 73bab574d4 moved options 2026-03-22 10:40:43 -05:00
+14
View File
@@ -75,6 +75,20 @@ in
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; }; pkgs = import inputs.nixpkgs { system = "x86_64-linux"; };
modules = with inputs.self.modules; [ modules = with inputs.self.modules; [
homeManager."${username}" homeManager."${username}"
{
imports = with inputs.self.modules.homeManager; [
rebuild
john
sops
# step-ssh-user
# mtls
# restic
];
home.username = "${username}";
home.homeDirectory = "/home/${username}";
shell.program = "zsh";
}
]; ];
}; };
} }