1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-10-01 18:57:28 +02:00
home-manager/tests/modules/programs/firefox/state-version-19_09.nix

18 lines
242 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
with lib;
{
config = {
home.stateVersion = "19.09";
programs.firefox.enable = true;
nmt.script = ''
assertFileRegex \
home-path/bin/firefox \
MOZ_APP_LAUNCHER
'';
};
}