Files
nixos/modules/home-manager/other/user.nix
T
2026-05-17 12:51:59 +02:00

13 lines
163 B
Nix

{
...
}:
{
home.username = "tomasr";
home.homeDirectory = "/home/tomasr";
home.sessionVariables = {
EDITOR = "neovim";
TERMINAL = "kitty";
};
}