WIP refactor

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-03-14 18:56:54 -05:00
parent a5c14dc701
commit 4b1bf541cf
6 changed files with 95 additions and 14 deletions

9
common/users/user.nix Normal file
View file

@ -0,0 +1,9 @@
{
username,
}:
{ config, ... }:
{
users.user.${username} = {
};
}