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

10 lines
233 B
Nix
Raw Normal View History

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