nixos-config/hosts/rubble/users/main/default.nix
2025-02-27 11:42:57 -05:00

7 lines
173 B
Nix

{ config, lib, ... }:
{
home-manager.users."${config.sysusers.main}".home = {
desktop.enable = true;
stateVersion = lib.mkForce config.system.stateVersion;
};
}