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