1
0
Fork 0
nix-configuration/modules/apps/hugo.nix
2024-03-24 12:35:48 -04:00

19 lines
285 B
Nix

{ 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
];
};
}