Refractor to dendritic approach.

This commit is contained in:
2026-05-24 19:24:38 +03:00
parent d4dee59413
commit fcb7e0b884
68 changed files with 774 additions and 942 deletions
+13
View File
@@ -0,0 +1,13 @@
{
orgTrivialBuild,
epkgs,
pkgs,
}:
orgTrivialBuild {
pname = "azos-emacs-hyprland";
version = "0.1.6";
src = ./config.org;
packageRequires = with epkgs; [
pkgs.azos-emacs-base
];
}
+17
View File
@@ -0,0 +1,17 @@
#+title: Aner's Emacs Hyprland Configuration
#+property: header-args :results silent
* Base setup
** Require
#+begin_src emacs-lisp
(require 'azos-emacs-base)
#+end_src
* Hyprland Specific
* Provide
#+begin_src emacs-lisp
(provide 'azos-emacs-hyprland)
#+end_src
+3
View File
@@ -0,0 +1,3 @@
{...}: {
config.flake.overlayPkgs.azos-emacs-hyprland = pkgs: pkgs.localEmacsPkg ./_pkg.nix;
}