mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 18:59:44 +01:00
73641e492c
This makes the programs.firefox.package option take a pre-wrapped Firefox package as value if state version is set to "19.09" or later. This should make the Firefox module work with a wider range of Firefox packages.
17 lines
242 B
Nix
17 lines
242 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
home.stateVersion = "19.09";
|
|
|
|
programs.firefox.enable = true;
|
|
|
|
nmt.script = ''
|
|
assertFileRegex \
|
|
home-path/bin/firefox \
|
|
MOZ_APP_LAUNCHER
|
|
'';
|
|
};
|
|
}
|