fix(thrall): Remove emacs overlay

This commit is contained in:
Alexander Kobjolke 2025-03-31 22:27:53 +02:00
parent 08dc438dab
commit ce246b359c
2 changed files with 8 additions and 46 deletions

View file

@ -28,11 +28,11 @@
inputs.nixpkgs.follows = "nixpkgs-droid";
};
emacs = {
url = "github:nix-community/emacs-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
# emacs = {
# url = "github:nix-community/emacs-overlay";
# inputs.nixpkgs.follows = "nixpkgs";
# };
#
# simplex-chat = {
# url = "github:simplex-chat/simplex-chat";
# inputs.nixpkgs.follows = "nixpkgs";
@ -92,9 +92,9 @@
{
nixpkgs = {
config.allowUnfree = true;
overlays = with inputs; [
emacs.overlay
];
# overlays = with inputs; [
# emacs.overlay
# ];
};
}
)