make utils module

This commit is contained in:
Daylin Morgan 2024-12-11 14:32:34 -06:00
parent db2bea7e80
commit ba6127d5e7
Signed by: daylin
GPG key ID: 950D13E9719334AD
4 changed files with 16 additions and 2 deletions

View file

@ -25,6 +25,7 @@
vbox
podman
docker
utils
''
|> listify
|> enableAttrs

View file

@ -16,8 +16,6 @@
gcc
file
jq
wget
curl
htop

View file

@ -43,6 +43,8 @@ in
restic
llm
utils
];
options.oizys = {

13
modules/utils/default.nix Normal file
View 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
];
}