feat: tried adding home manager for servers.

This commit is contained in:
CronyAkatsuki 2025-03-23 21:01:06 +01:00
parent a1ddec621b
commit 04ca0c28a4
2 changed files with 14 additions and 0 deletions

View File

@ -69,6 +69,13 @@
nix-on-droid,
...
} @ inputs: {
homeConfigurations = {
"ivek" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {system = "x86_64-linux";};
modules = [./hosts/server/home.nix];
};
};
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
modules = [inputs.stylix.nixOnDroidModules.stylix ./hosts/andronix/configuration.nix];
extraSpecialArgs = {inherit inputs;};

7
hosts/server/home.nix Normal file
View File

@ -0,0 +1,7 @@
{pkgs, ...}: {
home.username = "ivek";
home.homeDirectory = "/home/ivek";
home.stateVersion = "24.11";
programs.home-manager.enable = true;
}