12 lines
332 B
Nix
12 lines
332 B
Nix
{ pkgs, ... }: {
|
|
home.username = "ku";
|
|
home.homeDirectory = pkgs.lib.mkForce "/home/ku"; # 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";
|
|
}
|