mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 00:33:54 -05:00
10 lines
244 B
Nix
10 lines
244 B
Nix
|
{ pkgs, lib, config, ... }: {
|
||
|
options = {
|
||
|
guiApps.google-chrome.enable = lib.mkEnableOption "Enable Google Chrome.";
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf config.guiApps.google-chrome.enable {
|
||
|
home.packages = with pkgs; [ google-chrome ];
|
||
|
};
|
||
|
}
|