add emacs to microwave
This commit is contained in:
parent
090acb6881
commit
ac73c10a47
2 changed files with 33 additions and 0 deletions
24
flake.lock
generated
24
flake.lock
generated
|
@ -1,5 +1,28 @@
|
||||||
{
|
{
|
||||||
"nodes": {
|
"nodes": {
|
||||||
|
"emacs-overlay": {
|
||||||
|
"inputs": {
|
||||||
|
"flake-utils": [
|
||||||
|
"flake-utils"
|
||||||
|
],
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs-unstable"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1664390640,
|
||||||
|
"narHash": "sha256-oV7ERAZzzHh//ewzUliQAUpITg6z0BPQk6MrPo/U9bA=",
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "emacs-overlay",
|
||||||
|
"rev": "5a0d13e02555d20144d34fb8c9af4900fe55ce06",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "nix-community",
|
||||||
|
"repo": "emacs-overlay",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"fenix": {
|
"fenix": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
|
@ -122,6 +145,7 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
|
"emacs-overlay": "emacs-overlay",
|
||||||
"fenix": "fenix",
|
"fenix": "fenix",
|
||||||
"flake-utils": "flake-utils",
|
"flake-utils": "flake-utils",
|
||||||
"microvm": "microvm",
|
"microvm": "microvm",
|
||||||
|
|
|
@ -20,6 +20,12 @@
|
||||||
url = github:nix-community/fenix;
|
url = github:nix-community/fenix;
|
||||||
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
emacs-overlay = {
|
||||||
|
url = github:nix-community/emacs-overlay;
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
|
inputs.flake-utils.follows = "flake-utils";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
|
@ -27,6 +33,7 @@
|
||||||
, nixpkgs
|
, nixpkgs
|
||||||
, nixpkgs-unstable
|
, nixpkgs-unstable
|
||||||
, flake-utils
|
, flake-utils
|
||||||
|
, emacs-overlay
|
||||||
, sops-nix
|
, sops-nix
|
||||||
, microvm
|
, microvm
|
||||||
, fenix
|
, fenix
|
||||||
|
@ -56,6 +63,7 @@
|
||||||
./hosts/microwave
|
./hosts/microwave
|
||||||
./modules/basic-tools.nix
|
./modules/basic-tools.nix
|
||||||
./modules/binary-caches.nix
|
./modules/binary-caches.nix
|
||||||
|
./modules/emacs.nix
|
||||||
./modules/gnupg.nix
|
./modules/gnupg.nix
|
||||||
./modules/graphical.nix
|
./modules/graphical.nix
|
||||||
./modules/hw-accel-intel.nix
|
./modules/hw-accel-intel.nix
|
||||||
|
@ -68,6 +76,7 @@
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
fenix.overlay
|
fenix.overlay
|
||||||
self.overlays.default
|
self.overlays.default
|
||||||
|
emacs-overlay.overlay
|
||||||
];
|
];
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
(fenix.packages."x86_64-linux".stable.withComponents [
|
(fenix.packages."x86_64-linux".stable.withComponents [
|
||||||
|
|
Loading…
Add table
Reference in a new issue