From 0f8cc8eb177ed6531424368d521eda36cb1d3455 Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Thu, 5 Oct 2023 07:37:12 +0400 Subject: [PATCH] lmao --- modules/dev/editors/emacs/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/dev/editors/emacs/default.nix b/modules/dev/editors/emacs/default.nix index 91d3753d..12358f1e 100644 --- a/modules/dev/editors/emacs/default.nix +++ b/modules/dev/editors/emacs/default.nix @@ -14,16 +14,15 @@ in { }; config = mkIf cfg.enable { + # ues daemon services.emacs = { enable = true; install = true; package = pkgs.emacs; }; users.users.sako.packages = with pkgs; [ - # bro + # direnv direnv - # daemon lmao - #emacs ]; home-manager.users.sako.home.file.".emacs.d" = { enable = true; @@ -32,6 +31,7 @@ in { }; fonts.fonts = with pkgs; [ (nerdfonts.override {fonts = ["JetBrainsMono"];}) + jetbrains-mono ]; }; }