Files
dotfiles/modules/home/linux-headless.nix
Artem Sheremet 00049f5255 Make homeDirectory setting a default
Some hosts may have different home path
2026-05-14 15:17:23 +02:00

9 lines
129 B
Nix

{ lib, primaryUser, ... }:
{
imports = [
./common.nix
];
home.homeDirectory = lib.mkDefault "/home/${primaryUser}";
}