9 lines
157 B
Nix
9 lines
157 B
Nix
|
{ inputs, ... }:
|
||
|
|
||
|
{
|
||
|
home.username = "nezia";
|
||
|
home.homeDirectory = "/home/nezia";
|
||
|
programs.home-manager.enable = true;
|
||
|
home.stateVersion = "24.05";
|
||
|
}
|