nix-config/users/common/home.nix
2024-08-31 10:33:26 -03:00

11 lines
223 B
Nix

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