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

8 lines
173 B
Nix
Raw Normal View History

2025-02-27 11:42:57 -05:00
{ config, lib, ... }:
{
home-manager.users."${config.sysusers.main}".home = {
desktop.enable = true;
stateVersion = lib.mkForce config.system.stateVersion;
};
}