nixos-config/hosts/tower/users/main/default.nix

10 lines
229 B
Nix
Raw Normal View History

2025-01-03 17:52:33 -05:00
{ config, lib, ... }:
{
2025-02-25 05:39:25 -05:00
home-manager.users."${config.sysusers.main}".home = {
desktop.enable = true;
gaming.enable = true;
production.enable = true;
stateVersion = lib.mkForce config.system.stateVersion;
2025-01-03 17:52:33 -05:00
};
}