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

10 lines
229 B
Nix
Raw Normal View History

2025-02-14 16:34:45 -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-02-14 16:34:45 -05:00
};
}