From 4ea4e5e71651c327602027a76466e7b4257e0df8 Mon Sep 17 00:00:00 2001 From: q9i <46249765+quantum9Innovation@users.noreply.github.com> Date: Fri, 16 Aug 2024 14:49:15 -0700 Subject: [PATCH] fix: optimize external dependency specifications remove busybox (pure bloat) and unnecessary documentation --- app/Main.hs | 4 +--- flake.nix | 3 +-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/app/Main.hs b/app/Main.hs index 9d4ac6b..8b933a8 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -1,7 +1,5 @@ --- requires 'at' for running a command at a certain time --- requires 'date' for converting unix time to human readable time -- run on boot and at noon and midnight --- don't add commands to at while this script is running (monadic purity must be preserved) +-- don't add commands to `at` while this script is running (monadic purity must be preserved) module Main where diff --git a/flake.nix b/flake.nix index c6af4b4..e0bd1d9 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "Flake for suntheme's development environment and builds"; + description = "Suntheme's development and build environment"; inputs.haskellNix.url = "github:input-output-hk/haskell.nix"; inputs.nixpkgs.follows = "haskellNix/nixpkgs-unstable"; @@ -31,7 +31,6 @@ }; shell.buildInputs = with pkgs; [ at - busybox ]; }; })