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

12 lines
252 B
Nix
Raw Normal View History

2025-02-14 16:34:45 -05:00
{ config, lib, ... }:
{
home-manager.users."${config.sysusers.main}" = {
home = {
desktop.enable = true;
gaming.enable = true;
production.enable = true;
stateVersion = lib.mkForce config.system.stateVersion;
};
};
}