Let home-manager know user exists

Should fix an issue where home-manager wasn't executing previously.
This commit is contained in:
Donovan Glover 2023-05-18 20:33:54 -04:00
parent 334ae340af
commit 2cebedd7e7
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -9,4 +9,9 @@
extraGroups = [ "wheel" "networkmanager" ];
};
};
home-manager.users.user = {
home.username = "user";
home.homeDirectory = "/home/user";
};
}