nixos-config/hosts/hidden/user/default.nix
2025-05-14 12:07:20 +00:00

7 lines
173 B
Nix

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