From 99a6f13e70b366a858a543f145528152164858e5 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Sat, 28 Feb 2026 20:20:41 -0800 Subject: use librewolf instead; fix a bunch of problems --- nix/modules/home/emacs.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'nix/modules/home/emacs.nix') 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)}") ''; -- cgit v1.3