feat: tried adding home manager for servers.
This commit is contained in:
parent
a1ddec621b
commit
04ca0c28a4
@ -69,6 +69,13 @@
|
|||||||
nix-on-droid,
|
nix-on-droid,
|
||||||
...
|
...
|
||||||
} @ inputs: {
|
} @ 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 {
|
nixOnDroidConfigurations.default = nix-on-droid.lib.nixOnDroidConfiguration {
|
||||||
modules = [inputs.stylix.nixOnDroidModules.stylix ./hosts/andronix/configuration.nix];
|
modules = [inputs.stylix.nixOnDroidModules.stylix ./hosts/andronix/configuration.nix];
|
||||||
extraSpecialArgs = {inherit inputs;};
|
extraSpecialArgs = {inherit inputs;};
|
||||||
|
7
hosts/server/home.nix
Normal file
7
hosts/server/home.nix
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{pkgs, ...}: {
|
||||||
|
home.username = "ivek";
|
||||||
|
home.homeDirectory = "/home/ivek";
|
||||||
|
home.stateVersion = "24.11";
|
||||||
|
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user