removing emacs overlay - too new version

This commit is contained in:
Ivan Dimitrov 2023-08-07 19:01:54 +03:00
parent 1461e607ce
commit 29993076f5
3 changed files with 23 additions and 16 deletions

View File

@ -3,9 +3,7 @@
"emacs-overlay": { "emacs-overlay": {
"inputs": { "inputs": {
"flake-utils": "flake-utils", "flake-utils": "flake-utils",
"nixpkgs": [ "nixpkgs": "nixpkgs",
"nixpkgs"
],
"nixpkgs-stable": "nixpkgs-stable" "nixpkgs-stable": "nixpkgs-stable"
}, },
"locked": { "locked": {
@ -17,9 +15,8 @@
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "id": "emacs-overlay",
"repo": "emacs-overlay", "type": "indirect"
"type": "github"
} }
}, },
"flake-utils": { "flake-utils": {
@ -70,9 +67,10 @@
"type": "github" "type": "github"
}, },
"original": { "original": {
"id": "nixpkgs", "owner": "NixOS",
"ref": "nixos-unstable", "ref": "nixos-unstable",
"type": "indirect" "repo": "nixpkgs",
"type": "github"
} }
}, },
"nixpkgs-stable": { "nixpkgs-stable": {
@ -91,11 +89,26 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs_2": {
"locked": {
"lastModified": 1691368598,
"narHash": "sha256-ia7li22keBBbj02tEdqjVeLtc7ZlSBuhUk+7XTUFr14=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "5a8e9243812ba528000995b294292d3b5e120947",
"type": "github"
},
"original": {
"id": "nixpkgs",
"ref": "nixos-unstable",
"type": "indirect"
}
},
"root": { "root": {
"inputs": { "inputs": {
"emacs-overlay": "emacs-overlay", "emacs-overlay": "emacs-overlay",
"home-manager": "home-manager", "home-manager": "home-manager",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs_2"
} }
}, },
"systems": { "systems": {

View File

@ -5,10 +5,6 @@
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
emacs-overlay = {
url = "github:nix-community/emacs-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = { self, nixpkgs, home-manager, emacs-overlay, ... }: { outputs = { self, nixpkgs, home-manager, emacs-overlay, ... }: {
@ -23,7 +19,7 @@
homeConfigurations = { homeConfigurations = {
ivand = home-manager.lib.homeManagerConfiguration { ivand = home-manager.lib.homeManagerConfiguration {
modules = [ ./home/laptop.nix ]; modules = [ ./home/laptop.nix ];
pkgs = import nixpkgs { system = "x86_64-linux"; overlays = [ emacs-overlay.overlay ]; }; pkgs = import nixpkgs { system = "x86_64-linux"; };
}; };
}; };
}; };

View File

@ -109,7 +109,6 @@
}; };
emacs = { emacs = {
enable = true; enable = true;
package = pkgs.emacsGit;
}; };
zsh = { zsh = {
enable = true; enable = true;
@ -183,7 +182,6 @@
services = { services = {
emacs = { emacs = {
enable = true; enable = true;
package = pkgs.emacsGit;
}; };
}; };
} }