emacs-unstable
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, callPackage, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
home.username = "liamm";
|
home.username = "liamm";
|
||||||
@@ -17,6 +17,12 @@
|
|||||||
# environment.
|
# environment.
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(import (builtins.fetchTarball {
|
||||||
|
url = https://github.com/nix-community/emacs-overlay/archive/master.tar.gz;
|
||||||
|
sha256 = "00f028qrz2z0i7ma24993pwxcrx2viay6jygaz3jykj7lrww6ja6";
|
||||||
|
}))
|
||||||
|
];
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
android-studio
|
android-studio
|
||||||
brave
|
brave
|
||||||
@@ -203,6 +209,7 @@
|
|||||||
};
|
};
|
||||||
emacs = {
|
emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.emacs-unstable;
|
||||||
extraPackages = epkgs: [
|
extraPackages = epkgs: [
|
||||||
epkgs.pdf-tools
|
epkgs.pdf-tools
|
||||||
epkgs.org-pdftools
|
epkgs.org-pdftools
|
||||||
@@ -239,6 +246,7 @@
|
|||||||
blueman-applet.enable = true;
|
blueman-applet.enable = true;
|
||||||
emacs = {
|
emacs = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
package = pkgs.emacs-unstable;
|
||||||
client = {
|
client = {
|
||||||
enable = true;
|
enable = true;
|
||||||
arguments = [
|
arguments = [
|
||||||
|
|||||||
Reference in New Issue
Block a user