Messing around with emacsng

This commit is contained in:
Emmet 2024-08-13 16:54:45 -05:00
parent 684baa7e37
commit 72be7154da
2 changed files with 10 additions and 0 deletions

View file

@ -246,6 +246,9 @@
hyprgrass.url = "github:horriblename/hyprgrass/0bb3b822053c813ab6f695c9194089ccb5186cc3";
hyprgrass.inputs.hyprland.follows = "hyprland";
emacsng.url = "github:emacs-ng/emacs-ng/58fcf8c19a1b93c91c06d4b885cfbff5ccf86982";
emacsng.inputs.nixpkgs.follows = "nixpkgs";
nix-doom-emacs.url = "github:nix-community/nix-doom-emacs";
nix-doom-emacs.inputs.nixpkgs.follows = "emacs-pin-nixpkgs";

View file

@ -0,0 +1,7 @@
{ config, lib, pkgs, inputs, ... }:
{
home.packages = [
inputs.emacsng.${pkgs.system}.emacsngWRPgtk
];
}