Jalil David Salamé Messina
e03cd65e87
All checks were successful
/ check (push) Successful in 20s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 1s
This is much more manageable!
16 lines
271 B
Nix
16 lines
271 B
Nix
{ lib, ... }:
|
|
{
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
packages = {
|
|
# Documentation
|
|
inherit (import ../docs { inherit pkgs lib; })
|
|
docs
|
|
nixos-markdown
|
|
nvim-markdown
|
|
home-markdown
|
|
;
|
|
};
|
|
};
|
|
}
|