rename folder from home to profiles

This commit is contained in:
Asaki Yuki 2026-04-14 01:26:40 +07:00
parent d295ac2ea3
commit d70ff2ea3f
11 changed files with 8 additions and 8 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";
};
};
}