nixos-config/users/ku.nix

12 lines
332 B
Nix
Raw Normal View History

2024-03-05 01:32:22 +00:00
{ pkgs, ... }: {
2024-03-05 09:16:28 +00:00
home.username = "ku";
home.homeDirectory = pkgs.lib.mkForce "/home/ku"; # use force here since vm trys to set it to /var/empty
2024-03-05 01:32:22 +00:00
home.packages = [ ];
programs.bash.enable = true;
# The state version is required and should stay at the version you
# originally installed.
home.stateVersion = "23.11";
}