Add home manager modules

This commit is contained in:
2025-11-04 02:38:41 +08:00
parent c27291b1b9
commit f4cfe371f7
8 changed files with 901 additions and 8 deletions

View File

@@ -14,7 +14,10 @@ let
# Enable Home Manager for NixOS and define the user
home-manager.useUserPackages = true;
home-manager.users.yadunut = {
imports = [ ./home.nix ];
imports = [
./home.nix
inputs.nixvim.homeManagerModules.nixvim
];
home.homeDirectory = lib.mkForce "/home/yadunut";
};
};
@@ -29,7 +32,10 @@ let
};
home-manager.useUserPackages = true;
home-manager.users.yadunut = {
imports = [ ./home.nix ];
imports = [
./home.nix
inputs.nixvim.homeManagerModules.nixvim
];
home.homeDirectory = lib.mkForce "/Users/yadunut";
};
};

View File

@@ -14,6 +14,7 @@ let
signingKey = "~/.ssh/yadunut_ed25519.pub";
};
zsh.enable = true;
neovim.enable = true;
};
home.username = "yadunut";
home.packages = [
@@ -41,5 +42,6 @@ in
config
../../home/git
../../home/zsh
../../home/neovim
];
}