WIP refactor

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-03-14 18:56:54 -05:00
parent 7855fc4757
commit 77d58a1f6b
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} = {
};
}