nix-config/users/common/home.nix

18 lines
241 B
Nix

{
config,
pkgs,
lib,
...
}:
{
home = {
username = "user";
homeDirectory = "/home/user";
stateVersion = "22.05";
sessionVariables = {
EDITOR = "hx";
};
packages = with pkgs; [ nix-your-shell ];
};
}