default user imports

This commit is contained in:
Matthieu Morin 2024-06-09 16:26:03 +00:00
parent d15f55e998
commit 3c46d4e9f5
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ configVars, ... }:
{
imports = [
#################### Required Configs ####################
common/core #required
#################### Host-specific Optional Configs ####################
common/optional/sops.nix
common/optional/helper-scripts
common/optional/desktop
];
home = {
username = configVars.username;
homeDirectory = "/home/${configVars.username}";
};
}