fix(deertopia): i don't know what the deal with this one is

This commit is contained in:
2025-09-08 07:38:32 -06:00
parent 8a20ed0413
commit d221258f02
3 changed files with 10 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
{ config, lib, pkgs, inputs, ... }@args:
{ config, lib, pkgs, inputs, options, ... }@args:
let cfg = config.sydnix.users.crumb.emacs;
in {
@@ -145,7 +145,9 @@ in {
};
# We do this ourselves.
stylix.targets.emacs.enable = false;
stylix.targets.emacs.enable =
lib.mkIf (lib.hasAttrByPath ["stylix" "targets" "emacs"] options)
false;
home.shellAliases = {
e = "emacsclient-or-emacs";