dotfiles/home-manager/modules/webdev.nix

28 lines
503 B
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
#
# SPDX-License-Identifier: LGPL-3.0-or-later
2021-01-18 09:01:38 +01:00
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.magic_rb.packageCollections.webdev;
in {
options.magic_rb.packageCollections.webdev = {
enable =
mkEnableOption
''
Enable webdev package collection, contains yarn and wasm-pack.
'';
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
yarn
wasm-pack
];
};
2021-01-18 09:01:38 +01:00
}