rename from profiles to users
This commit is contained in:
parent
d70ff2ea3f
commit
1adc687ff9
13 changed files with 42 additions and 10 deletions
33
users/junko/configuration.nix
Normal file
33
users/junko/configuration.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in a new issue