From 136d8231cba2c4aa0730f1d997f3523ffd6374ca Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Wed, 14 Feb 2024 20:31:18 +0400 Subject: [PATCH] fix --- hosts/sakowsl/configuration.nix | 2 +- modules/dev/editors/emacs/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/sakowsl/configuration.nix b/hosts/sakowsl/configuration.nix index 939bda98..f33408c6 100644 --- a/hosts/sakowsl/configuration.nix +++ b/hosts/sakowsl/configuration.nix @@ -121,7 +121,7 @@ emacs = { enable = true; daemon = false; - type = "pkgs.emacs-unstable-pgtk"; + package = pkgs.emacs-unstable-pgtk; }; }; cc.enable = true; diff --git a/modules/dev/editors/emacs/default.nix b/modules/dev/editors/emacs/default.nix index 7e2d7a72..e4a5d567 100644 --- a/modules/dev/editors/emacs/default.nix +++ b/modules/dev/editors/emacs/default.nix @@ -26,7 +26,7 @@ in { options.modules.dev.editors.emacs = { enable = mkEnableOption false; daemon = mkEnableOption true; - type = mkOption { + package = mkOption { type = pkg; default = pkgs.emacs-unstable; description = "pkgs. followed by the name of the emacs overlay package";