fix
This commit is contained in:
parent
c7d702aa6b
commit
47c9f0fea4
|
|
@ -80,7 +80,10 @@
|
|||
};
|
||||
};
|
||||
|
||||
homeConfigurations.josh = home-manager.lib.homeManagerConfiguration {
|
||||
homeConfigurations.${username} = home-manager.lib.homeManagerConfiguration {
|
||||
specialArgs = {
|
||||
inherit username;
|
||||
};
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
modules = [
|
||||
./modules/home
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@
|
|||
imports = [
|
||||
./direnv.nix
|
||||
./fzf.nix
|
||||
./home.nix
|
||||
./hyprland
|
||||
./kitty.nix
|
||||
./overlays.nix
|
||||
./stylix.nix
|
||||
./system.nix
|
||||
./vscodium.nix
|
||||
./xdg.nix
|
||||
./zsh
|
||||
|
|
|
|||
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
username,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home = {
|
||||
username = "${username}";
|
||||
homeDirectory = "/home/${username}";
|
||||
stateVersion = "25.11";
|
||||
};
|
||||
}
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
...
|
||||
}:
|
||||
{
|
||||
system.stateVersion = "25.05";
|
||||
}
|
||||
Loading…
Reference in New Issue