nix-config/users/common/home.nix
2022-12-22 22:38:12 -03:00

12 lines
211 B
Nix

{ specialArgs, inputs, config, pkgs, lib, ... }:
{
home = {
username = "user";
homeDirectory = "/home/user";
stateVersion = "22.05";
sessionVariables = {
EDITOR = "micro";
};
};
}