diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-06-03 18:28:35 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-06-03 18:39:43 +0530 |
commit | 279ff6251173e161cc50d8ae03cb3cd2e90a61a4 (patch) | |
tree | 971260447397a872be4b051b55864b482acc4a57 /os/kay/modules/www.nix | |
parent | 4311eaf183976752acdf5624ea68516cac6f0d94 (diff) |
global: init
global contains shared data between home-manager and nixos modules. they're
just structured data, it's doesn't contain any module functionally in
the normal sense, an example is preferred monospace font or user's mail id
`config.global.userdata.email`
Diffstat (limited to 'os/kay/modules/www.nix')
-rw-r--r-- | os/kay/modules/www.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/kay/modules/www.nix b/os/kay/modules/www.nix index 3891bf6..54eab65 100644 --- a/os/kay/modules/www.nix +++ b/os/kay/modules/www.nix @@ -1,7 +1,7 @@ { config, pkgs, lib, ... }: let - domain = config.userdata.domain; + domain = config.global.userdata.domain; fscusat = "fscusat.org"; mark = "themark.ing"; storage = "/hdd/users/sftp/shr"; |