aboutsummaryrefslogtreecommitdiff
path: root/home-manager/tests/modules/programs/firefox/state-version-19_09.nix
blob: 0c93096190eb69de7aaa968813bee5181d2d9f4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ config, lib, pkgs, ... }:

with lib;

{
  config = {
    home.stateVersion = "19.09";

    programs.firefox.enable = true;

    nmt.script = ''
      assertFileRegex \
        home-path/bin/firefox \
        MOZ_APP_LAUNCHER
    '';
  };
}