1
0
Fork 0
forked from Bun/nixos-config
nixos-config/modules/home/user/default.nix

7 lines
112 B
Nix

{ config, ... }:
{
home = {
username = "bun";
homeDirectory = "/home/${config.home.username}";
};
}