Add users to redmond

This commit is contained in:
Jimbo 2025-01-04 22:49:26 -05:00
parent aa6bbf5930
commit b6d7c470d2
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,4 @@
{ ... }:
{
imports = [ ./main ];
}

View file

@ -0,0 +1,8 @@
{ config, lib, ... }:
{
home-manager.users."${config.sysusers.main}" = {
home = {
stateVersion = lib.mkForce "24.05";
};
};
}