nixos-config/apps/browser.nix
2025-08-31 12:03:52 +02:00

9 lines
133 B
Nix

{ config, pkgs, ... }:
{
programs.firefox = {
enable = true ;
languagePacks = [ "fr" ] ;
};
}
# vim: set ts=2 sw=2 sts=2 et :