15 lines
217 B
Nix
15 lines
217 B
Nix
{...}: {
|
|
imports = [];
|
|
|
|
home.username = "enis";
|
|
home.homeDirectory = "/home/enis";
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "vim";
|
|
};
|
|
|
|
home.stateVersion = "24.11";
|
|
}
|