feat: trying to test something.

This commit is contained in:
CronyAkatsuki 2025-04-29 15:50:39 +02:00
parent c3be1c72b2
commit b2c5920c3b
2 changed files with 3 additions and 3 deletions

View file

@ -76,12 +76,12 @@
homeConfigurations = { homeConfigurations = {
"ivek" = home-manager.lib.homeManagerConfiguration { "ivek" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {system = "x86_64-linux";}; pkgs = import nixpkgs {system = "x86_64-linux";};
modules = [./hosts/server/home.nix]; modules = [./hosts/server/home.nix ({...}: {home.username = "ivek";})];
extraSpecialArgs = {inherit inputs;}; extraSpecialArgs = {inherit inputs;};
}; };
"banir" = home-manager.lib.homeManagerConfiguration { "banir" = home-manager.lib.homeManagerConfiguration {
pkgs = import nixpkgs {system = "x86_64-linux";}; pkgs = import nixpkgs {system = "x86_64-linux";};
modules = [./hosts/server/home.nix]; modules = [./hosts/server/home.nix ({...}: {home.username = "banir";})];
extraSpecialArgs = {inherit inputs;}; extraSpecialArgs = {inherit inputs;};
}; };
}; };

View file

@ -4,7 +4,7 @@
inputs, inputs,
... ...
}: { }: {
home.username = "banir"; # home.username = "banir";
home.homeDirectory = "/home/banir"; home.homeDirectory = "/home/banir";
home.stateVersion = "24.11"; home.stateVersion = "24.11";