tin vip vai lon
This commit is contained in:
parent
5760ed4067
commit
4737199992
10 changed files with 148 additions and 110 deletions
35
home/junko/configuration.nix
Normal file
35
home/junko/configuration.nix
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
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