Skip to main content

Why you can't have a ‘work self’ and a ‘home self’

There's a question that comes up in nearly every leadership workshop, every team development session, every coaching conversation about authenticity:

Should I be thinking about my professional values or my personal values?

It's an understandable question. We've been conditioned to believe in compartmentalization—that we can be one person at work and another at home, that we can hold one set of principles in the boardroom and a different set at the dinner table.

But here's what Brené Brown names so clearly in Dare to Lead: We have only one set of values.

Me and the other me

The idea that we might have separate value systems for different areas of our lives is appealing. It would make things so much easier, wouldn't it? We could be competitive at work but collaborative at home. We could prioritize results over relations in business but reverse that in our personal relationships.

Except that's not how integrity works. That's not how we work.

Our values aren't like clothes we change depending on the occasion. They're more like our DNA—the fundamental code that determines who we are, how we show up, and what we stand for, regardless of where we're standing.

Living our values

The challenge isn't choosing between professional and personal values. The challenge is living in alignment with our one set of values across every context—even when it's difficult, even when it costs us something, even when the people around us hold different values.

This is where the rubber meets the road:

  • That moment when your company asks you to compromise on something you believe in
  • When your friends pressure you to go along with something that doesn't sit right
  • When a family member expects you to prioritize loyalty over honesty
  • When a stranger's behavior at the line in the grocery store tests your commitment to respect and kindness

These moments of conflict aren't signs that we need different values for different settings. They're invitations to clarify what we truly value and to find the courage to honor those values even when it's uncomfortable.

The freedom in one set of values

Here's the good news: while having only one set of values is challenging, it's also deeply liberating.

When you stop trying to maintain multiple versions of yourself, you free up enormous energy. You no longer have to remember which version of yourself you're supposed to be in which context. You no longer have to manage the cognitive dissonance of behaving in ways that contradict your core beliefs.

You simply get to be you—fully, consistently, courageously.

Next time

So the next time you're faced with a values-based decision, don't ask yourself whether this is about your professional or personal values. Instead, ask:

  • What do I actually value most?
  • Am I honoring those values in this moment?
  • If there's misalignment, what needs to change—my behavior or my situation?

Your values aren't situational. They're not negotiable based on context. They're the throughline of your life, the non-negotiables that define who you are when no one's watching and when everyone is.

The work isn't to have different values for different parts of your life. The work is to identify your true values and then find the courage to live them—everywhere, with everyone, all the time.

Merry Christmas!

Popular posts from this blog

Podman– Command execution failed with exit code 125

After updating WSL on one of the developer machines, Podman failed to work. When we took a look through Podman Desktop, we noticed that Podman had stopped running and returned the following error message: Error: Command execution failed with exit code 125 Here are the steps we tried to fix the issue: We started by running podman info to get some extra details on what could be wrong: >podman info OS: windows/amd64 provider: wsl version: 5.3.1 Cannot connect to Podman. Please verify your connection to the Linux system using `podman system connection list`, or try `podman machine init` and `podman machine start` to manage a new Linux VM Error: unable to connect to Podman socket: failed to connect: dial tcp 127.0.0.1:2655: connectex: No connection could be made because the target machine actively refused it. That makes sense as the podman VM was not running. Let’s check the VM: >podman machine list NAME         ...

Azure DevOps/ GitHub emoji

I’m really bad at remembering emoji’s. So here is cheat sheet with all emoji’s that can be used in tools that support the github emoji markdown markup: All credits go to rcaviers who created this list.

VS Code Planning mode

After the introduction of Plan mode in Visual Studio , it now also found its way into VS Code. Planning mode, or as I like to call it 'Hannibal mode', extends GitHub Copilot's Agent Mode capabilities to handle larger, multi-step coding tasks with a structured approach. Instead of jumping straight into code generation, Planning mode creates a detailed execution plan. If you want more details, have a look at my previous post . Putting plan mode into action VS Code takes a different approach compared to Visual Studio when using plan mode. Instead of a configuration setting that you can activate but have limited control over, planning is available as a separate chat mode/agent: I like this approach better than how Visual Studio does it as you have explicit control when plan mode is activated. Instead of immediately diving into execution, the plan agent creates a plan and asks some follow up questions: You can further edit the plan by clicking on ‘Open in Editor’: ...