moved home manager modules
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user