mirror of
https://github.com/quantum9Innovation/suntheme.git
synced 2024-11-24 17:33:52 -08:00
fix: optimize external dependency specifications
remove busybox (pure bloat) and unnecessary documentation
This commit is contained in:
parent
42af799d0f
commit
4ea4e5e716
2 changed files with 2 additions and 5 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue