Add emacs-overlay to the config

This commit is contained in:
foo-dogsquared 2022-01-02 08:40:01 +08:00
parent 73e829fc96
commit 9fd7213200
2 changed files with 21 additions and 0 deletions

16
flake.lock generated
View File

@ -35,6 +35,21 @@
"type": "github"
}
},
"emacs-overlay": {
"locked": {
"lastModified": 1641032585,
"narHash": "sha256-2AQsgDZ4BdMzFCDtYllxDeVjdilmaQCi6nXnQNPAcpk=",
"owner": "nix-community",
"repo": "emacs-overlay",
"rev": "e5dc491b4294109bbef89bae64be3d2bd7b30549",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "emacs-overlay",
"type": "github"
}
},
"flake-compat": {
"flake": false,
"locked": {
@ -209,6 +224,7 @@
"inputs": {
"agenix": "agenix",
"devshell": "devshell",
"emacs-overlay": "emacs-overlay",
"flake-utils": "flake-utils",
"home-manager": "home-manager",
"neovim-nightly-overlay": "neovim-nightly-overlay",

View File

@ -19,6 +19,8 @@
# Overlays.
neovim-nightly-overlay.url = "github:nix-community/neovim-nightly-overlay";
emacs-overlay.url = "github:nix-community/emacs-overlay";
rust-overlay.url = "github:oxalica/rust-overlay";
rust-overlay.inputs.nixpkgs.follows = "nixpkgs";
};
@ -32,6 +34,9 @@
# Neovim nightly!
inputs.neovim-nightly-overlay.overlay
# Emacs unstable version!
inputs.emacs-overlay.overlay
# Rust overlay for them ease of setting up Rust toolchains.
inputs.rust-overlay.overlay
];