path
This commit is contained in:
parent
b1e6f4256f
commit
e683317ab3
5 changed files with 35 additions and 35 deletions
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
lib,
|
||||
conf,
|
||||
config,
|
||||
...
|
||||
|
|
@ -14,18 +15,21 @@
|
|||
};
|
||||
|
||||
home-manager = {
|
||||
extraSpecialArgs = inputs // {system-config = config;};
|
||||
extraSpecialArgs = {
|
||||
inherit inputs;
|
||||
conf = conf;
|
||||
};
|
||||
useGlobalPkgs = true;
|
||||
useUserPackages = true;
|
||||
};
|
||||
|
||||
home-manager.users = let
|
||||
hm = {user = [];}; # import ../home;
|
||||
hm = import ../home;
|
||||
in {
|
||||
${conf.user} = {
|
||||
imports = hm.user;
|
||||
# home.username = conf.user;
|
||||
# home.stateVersion = "24.11";
|
||||
home.username = conf.user;
|
||||
home.stateVersion = "24.11";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue