mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 09:46:50 +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;
|
||||||
#with lib.internal;
|
#with lib.internal;
|
||||||
let cfg = config.custom.user.jopejoe1.home;
|
let
|
||||||
let hcfg = config.home-manager.users.jopejoe1;
|
cfg = config.custom.user.jopejoe1.home;
|
||||||
|
hcfg = config.home-manager.users.jopejoe1;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.custom.user.jopejoe1.home = with types; {
|
options.custom.user.jopejoe1.home = with types; {
|
||||||
|
|
|
@ -2,8 +2,9 @@
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
#with lib.internal;
|
#with lib.internal;
|
||||||
let cfg = config.custom.user.root.home;
|
let
|
||||||
let hcfg = config.home-manager.users.root;
|
cfg = config.custom.user.root.home;
|
||||||
|
hcfg = config.home-manager.users.root;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.custom.user.root.home = with types; {
|
options.custom.user.root.home = with types; {
|
||||||
|
|
Loading…
Reference in a new issue