nixos-config/modules/programs/curl-scripts.nix

32 lines
626 B
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ config, pkgs, lib, ... }:
with lib;
let
weatherScript = pkgs.writeShellScriptBin "weather" ''
${pkgs.curl}/bin/curl wttr.in/Berlin
'';
qrCodeScript = pkgs.writeShellScriptBin "qrCode" ''
${pkgs.curl}/bin/curl "qrenco.de/$1"
'';
2019-12-20 05:54:26 +01:00
cheatSheetScript = pkgs.writeShellScriptBin "cheatsheet" ''
2019-10-24 02:20:38 +02:00
${pkgs.curl}/bin/curl "cheat.sh/$1"
'';
cfg = config.programs.custom.curlScripts;
in {
2019-12-20 05:54:26 +01:00
options.programs.custom.curlScripts.enable =
mkEnableOption "enable curl scripts";
2019-10-24 02:20:38 +02:00
config = mkIf cfg.enable {
2019-12-20 05:54:26 +01:00
environment.systemPackages =
[ weatherScript qrCodeScript cheatSheetScript ];
2019-10-24 02:20:38 +02:00
};
}