mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 18:59:44 +01:00
18 lines
242 B
Nix
18 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
|
||
|
'';
|
||
|
};
|
||
|
}
|