data.cs.purdue.edu: explicitly set homeDirectory

This commit is contained in:
Infinidoge 2023-09-08 23:11:41 -04:00
parent d4c50101c4
commit e813ae1048

View file

@ -13,8 +13,12 @@
user.name = private.variables.purdue-username;
home = { ... }: {
home.packages = with pkgs; [
home = {
packages = with pkgs; [
home-manager
];
homeDirectory = lib.mkForce "/homes/${config.user.name}";
};
};
}