mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 21:23:55 -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 ];
|
|
};
|
|
}
|