refactor: packagise emacs configuration and lib refactor

This commit is contained in:
Artur Manuel 2025-04-09 19:07:28 +01:00
commit 52c33aa328
Signed by: amadaluzia
SSH key fingerprint: SHA256:ubvwT66gNUKSsgSzEb2UQnX8pzTq5N+r8eRVYGJJm4Q
9 changed files with 208 additions and 168 deletions

View file

@ -20,11 +20,13 @@
{
lib = import ./lib.nix inputs;
formatter = forAllSystems (_: pkgs: pkgs.nixfmt-rfc-style);
packages = forAllSystems (_: pkgs: {
pgtk = inputs.self.lib.mkPankomacs {
inherit pkgs;
emacs = pkgs.emacs30-pgtk;
};
});
packages = forAllSystems (
_: pkgs: {
pgtk = inputs.self.lib.mkPankomacs {
inherit pkgs;
emacs = pkgs.emacs30-pgtk;
};
}
);
};
}