nixos-config/apps/browser.nix

10 lines
133 B
Nix
Raw Normal View History

2025-08-21 11:21:15 +02:00
{ config, pkgs, ... }:
{
2025-08-31 12:03:52 +02:00
programs.firefox = {
enable = true ;
languagePacks = [ "fr" ] ;
};
2025-08-21 11:21:15 +02:00
}
2025-08-31 12:03:52 +02:00
# vim: set ts=2 sw=2 sts=2 et :