moved home manager modules

This commit is contained in:
John Lancaster
2026-03-10 22:39:30 -05:00
parent 6c01156ffe
commit 5ee73c1f44
20 changed files with 31 additions and 31 deletions

View File

@@ -11,7 +11,7 @@ in
flake.modules.nixos."${username}" = { pkgs, ... }: {
home-manager.users."${username}" = {
imports = [
inputs.self.homeModules."${username}"
inputs.self.modules.homeManager."${username}"
];
};
users.users."${username}" = {
@@ -26,7 +26,7 @@ in
programs.zsh.enable = true;
};
flake.homeModules."${username}" = {
flake.modules.homeManager."${username}" = {
home.username = "${username}";
home.homeDirectory = "/home/${username}";
home.stateVersion = "25.11";
@@ -35,7 +35,7 @@ in
programs.git.settings.user.name = "John Lancaster";
programs.git.settings.user.email = "32917998+jsl12@users.noreply.github.com";
imports = with inputs.self.homeModules; [
imports = with inputs.self.modules.homeManager; [
base
# docker
# resticprofile
@@ -46,7 +46,7 @@ in
flake.homeConfigurations."${username}" = inputs.home-manager.lib.homeManagerConfiguration {
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; };
modules = [
inputs.self.homeModules."${username}"
inputs.self.modules.homeManager."${username}"
# Include another inline module to set the options created through the jsl-home modules
{