9 lines
139 B
Nix
9 lines
139 B
Nix
|
|
{ outputs, ... }:
|
||
|
|
_final: prev:
|
||
|
|
let
|
||
|
|
inherit (prev.stdenv.hostPlatform) system;
|
||
|
|
in
|
||
|
|
{
|
||
|
|
inherit (outputs.packages.${system}) doom-emacs;
|
||
|
|
}
|