1
0
Fork 0
nix-configuration/modules/apps/hugo.nix

19 lines
285 B
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
{ pkgs, config, lib, ... }:
let
cfg = config.host.apps.hugo;
in
with lib;
{
options = {
host.apps.hugo.enable = mkEnableOption (mdDoc "Enables Hugo and webdev tools");
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
hugo
rsync
yarn
];
};
}