mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 01:50:44 -06:00
make utils module
This commit is contained in:
parent
db2bea7e80
commit
ba6127d5e7
4 changed files with 16 additions and 2 deletions
|
@ -25,6 +25,7 @@
|
||||||
vbox
|
vbox
|
||||||
podman
|
podman
|
||||||
docker
|
docker
|
||||||
|
utils
|
||||||
''
|
''
|
||||||
|> listify
|
|> listify
|
||||||
|> enableAttrs
|
|> enableAttrs
|
||||||
|
|
|
@ -16,8 +16,6 @@
|
||||||
gcc
|
gcc
|
||||||
file
|
file
|
||||||
|
|
||||||
jq
|
|
||||||
|
|
||||||
wget
|
wget
|
||||||
curl
|
curl
|
||||||
htop
|
htop
|
||||||
|
|
|
@ -43,6 +43,8 @@ in
|
||||||
restic
|
restic
|
||||||
|
|
||||||
llm
|
llm
|
||||||
|
|
||||||
|
utils
|
||||||
];
|
];
|
||||||
|
|
||||||
options.oizys = {
|
options.oizys = {
|
||||||
|
|
13
modules/utils/default.nix
Normal file
13
modules/utils/default.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
mkOizysModule,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
mkOizysModule config "utils" {
|
||||||
|
# a grab bag of classic utils I probably want installed by default
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
feh
|
||||||
|
jq
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue