wip
This commit is contained in:
parent
1231503914
commit
c15ee0a39b
30 changed files with 703 additions and 118 deletions
16
modules/apps/firefox/default.nix
Normal file
16
modules/apps/firefox/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
options,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.aa.apps.firefox;
|
||||
in {
|
||||
options.aa.apps.firefox = with types; {
|
||||
enable = mkEnableOption "firefox";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {environment.systemPackages = with pkgs; [firefox];};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue