rename from profiles to users

This commit is contained in:
Asaki Yuki 2026-04-14 01:45:58 +07:00
parent d70ff2ea3f
commit 1adc687ff9
13 changed files with 42 additions and 10 deletions

View file

@ -0,0 +1,33 @@
{
inputs,
libs,
config,
custom,
unstable,
...
}: let
osconfig = config;
in {
users.users.junko = {
isNormalUser = true;
};
home-manager.users.junko = {
_module.args = {
inherit
inputs
unstable
osconfig
custom
libs
;
};
imports = [];
home = {
username = "junko";
stateVersion = "25.11";
};
};
}