mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-01 15:36:35 +01:00
Fix let statement
This commit is contained in:
parent
cd5a912929
commit
a7ff9fc5a1
2 changed files with 6 additions and 4 deletions
|
@ -2,8 +2,9 @@
|
|||
|
||||
with lib;
|
||||
#with lib.internal;
|
||||
let cfg = config.custom.user.jopejoe1.home;
|
||||
let hcfg = config.home-manager.users.jopejoe1;
|
||||
let
|
||||
cfg = config.custom.user.jopejoe1.home;
|
||||
hcfg = config.home-manager.users.jopejoe1;
|
||||
in
|
||||
{
|
||||
options.custom.user.jopejoe1.home = with types; {
|
||||
|
|
|
@ -2,8 +2,9 @@
|
|||
|
||||
with lib;
|
||||
#with lib.internal;
|
||||
let cfg = config.custom.user.root.home;
|
||||
let hcfg = config.home-manager.users.root;
|
||||
let
|
||||
cfg = config.custom.user.root.home;
|
||||
hcfg = config.home-manager.users.root;
|
||||
in
|
||||
{
|
||||
options.custom.user.root.home = with types; {
|
||||
|
|
Loading…
Reference in a new issue