Add the overlay for now, but it doesn't do anything

This commit is contained in:
Benson Chu 2023-12-12 19:41:50 -06:00
parent bafbe47750
commit 7b8f9a76b7
2 changed files with 20 additions and 0 deletions

View file

@ -1,5 +1,21 @@
{
"nodes": {
"emacs-overlay": {
"locked": {
"lastModified": 1644575200,
"narHash": "sha256-7BaSTzlAI/xndvPIieZSZOB5Nsgtrb7L5HqdGGdVbwg=",
"owner": "nix-community",
"repo": "emacs-overlay",
"rev": "da2f552d133497abd434006e0cae996c0a282394",
"type": "github"
},
"original": {
"owner": "nix-community",
"repo": "emacs-overlay",
"rev": "da2f552d133497abd434006e0cae996c0a282394",
"type": "github"
}
},
"home-manager": {
"inputs": {
"nixpkgs": [
@ -38,6 +54,7 @@
},
"root": {
"inputs": {
"emacs-overlay": "emacs-overlay",
"home-manager": "home-manager",
"nixpkgs": "nixpkgs"
}

View file

@ -5,9 +5,12 @@
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
emacs-overlay.url = "github:nix-community/emacs-overlay/da2f552d133497abd434006e0cae996c0a282394";
};
outputs = { self, nixpkgs, ... }: {
nixpkgs.overlays = [ (import self.inputs.emacs-overlay) ];
nixosConfigurations.NixFrame = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [ ./hosts/NixFrame/configuration.nix ];