Added emacs eaf to my flake!

This commit is contained in:
Emmet
2023-05-19 20:25:57 -05:00
parent ae90cd0d8a
commit 8b3fb0123c
8 changed files with 106 additions and 10 deletions

View File

@@ -7,9 +7,17 @@
home-manager.inputs.nixpkgs.follows = "nixpkgs";
nix-doom-emacs.url = "github:nix-community/nix-doom-emacs";
stylix.url = "github:danth/stylix";
eaf = {
url = "github:emacs-eaf/emacs-application-framework";
flake = false;
};
eaf-browser = {
url = "github:emacs-eaf/eaf-browser";
flake = false;
};
};
outputs = { self, nixpkgs, home-manager, nix-doom-emacs, stylix, ... }:
outputs = { self, nixpkgs, home-manager, nix-doom-emacs, stylix, eaf, eaf-browser, ... }@inputs:
let
system = "x86_64-linux";
name = "emmet";
@@ -41,6 +49,8 @@
myNixConfigurationFilePath = dotfilesDir+"/system/configuration.nix";
myHomeManagerFilePath = dotfilesDir+"/user/home.nix";
myTheme = theme;
inherit (inputs) eaf;
inherit (inputs) eaf-browser;
};
};
};