Add lynx
Some checks are pending
/ check (push) Waiting to run

This commit is contained in:
Oliver Davies 2025-09-22 19:33:43 +01:00
parent d204c9981a
commit c3dc7d71c8

9
modules/lynx.nix Normal file
View file

@ -0,0 +1,9 @@
{
flake.modules.nixos.base =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
lynx
];
};
}