13 lines
335 B
Nix
13 lines
335 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.username = "jas";
|
|
home.homeDirectory = pkgs.lib.mkForce "/home/jas"; # use force here since vm trys to set it to /var/empty
|
|
|
|
home.packages = [ ];
|
|
programs.bash.enable = true;
|
|
|
|
# The state version is required and should stay at the version you
|
|
# originally installed.
|
|
home.stateVersion = "23.11";
|
|
}
|