nix-config/modules/lynx.nix
Oliver Davies c3dc7d71c8
Some checks are pending
/ check (push) Waiting to run
Add lynx
2025-09-22 19:33:43 +01:00

9 lines
135 B
Nix

{
flake.modules.nixos.base =
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
lynx
];
};
}