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

38
flake.lock generated
View file

@ -102,27 +102,6 @@
"type": "github" "type": "github"
} }
}, },
"emacs": {
"inputs": {
"nixpkgs": [
"nixpkgs"
],
"nixpkgs-stable": "nixpkgs-stable"
},
"locked": {
"lastModified": 1743006152,
"narHash": "sha256-1mkjVaVLaQVJSnW0/ziFpqevuU9p74niwF4tkS3wHMo=",
"owner": "nix-community",
"repo": "emacs-overlay",
"rev": "8566c4f4dea1698078dc003a7c55ba7f59ac3b27",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "emacs-overlay",
"type": "github"
}
},
"flake-compat": { "flake-compat": {
"flake": false, "flake": false,
"locked": { "locked": {
@ -384,22 +363,6 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-stable": {
"locked": {
"lastModified": 1742751704,
"narHash": "sha256-rBfc+H1dDBUQ2mgVITMGBPI1PGuCznf9rcWX/XIULyE=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "f0946fa5f1fb876a9dc2e1850d9d3a4e3f914092",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-24.11",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1732014248, "lastModified": 1732014248,
@ -496,7 +459,6 @@
"agenix": "agenix", "agenix": "agenix",
"disko": "disko", "disko": "disko",
"distro-grub-themes": "distro-grub-themes", "distro-grub-themes": "distro-grub-themes",
"emacs": "emacs",
"home-manager": "home-manager_2", "home-manager": "home-manager_2",
"nix-on-droid": "nix-on-droid", "nix-on-droid": "nix-on-droid",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",

View file

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