fix: optimize external dependency specifications

remove busybox (pure bloat) and unnecessary documentation
This commit is contained in:
q9i 2024-08-16 14:49:15 -07:00 committed by Ananth Venkatesh
parent 42af799d0f
commit 4ea4e5e716
2 changed files with 2 additions and 5 deletions

View file

@ -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 -- 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 module Main where

View file

@ -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.haskellNix.url = "github:input-output-hk/haskell.nix";
inputs.nixpkgs.follows = "haskellNix/nixpkgs-unstable"; inputs.nixpkgs.follows = "haskellNix/nixpkgs-unstable";
@ -31,7 +31,6 @@
}; };
shell.buildInputs = with pkgs; [ shell.buildInputs = with pkgs; [
at at
busybox
]; ];
}; };
}) })