mirror of
https://github.com/ellmau/nixos.git
synced 2025-12-18 09:19:39 +01:00
17 lines
306 B
Nix
17 lines
306 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib; {
|
|
options.elss.programs.emacs.enable = mkEnableOption "Setup emacs package and install it";
|
|
config = mkIf config.elss.programs.emacs.enable {
|
|
services.emacs = {
|
|
enable = true;
|
|
defaultEditor = true;
|
|
package = pkgs.emacs;
|
|
};
|
|
};
|
|
}
|