summaryrefslogtreecommitdiff
path: root/nix/modules/home/emacs.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/modules/home/emacs.nix')
-rw-r--r--nix/modules/home/emacs.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/nix/modules/home/emacs.nix b/nix/modules/home/emacs.nix
index cdf1def..bc85177 100644
--- a/nix/modules/home/emacs.nix
+++ b/nix/modules/home/emacs.nix
@@ -1,4 +1,4 @@
-{ lib, config, pkgs, ... }:
+{ lib, config, pkgs, super, ... }:
{
programs.emacs =
{
@@ -6,10 +6,10 @@
package = pkgs.emacs-pgtk;
extraConfig = ''
(setq debug-on-error t)
-(setq system-email "${config.monorepo.profiles.email.email}")
-(setq system-username "${config.monorepo.vars.internetName}")
-(setq system-fullname "${config.monorepo.vars.fullName}")
-(setq system-gpgkey "${config.monorepo.vars.gpgKey}")
+(setq system-email "${super.monorepo.vars.email}")
+(setq system-username "${super.monorepo.vars.internetName}")
+(setq system-fullname "${super.monorepo.vars.fullName}")
+(setq system-gpgkey "${super.monorepo.vars.gpgKey}")
(load "${pkgs.writeText "init.el" (builtins.readFile ../../init.el)}")
'';