diff --git a/modules/lynx.nix b/modules/lynx.nix new file mode 100644 index 00000000..2187eb6c --- /dev/null +++ b/modules/lynx.nix @@ -0,0 +1,9 @@ +{ + flake.modules.nixos.base = + { pkgs, ... }: + { + environment.systemPackages = with pkgs; [ + lynx + ]; + }; +}