mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 01:50:44 -06:00
13 lines
212 B
Nix
13 lines
212 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
mkOizysModule,
|
|
...
|
|
}:
|
|
mkOizysModule config "utils" {
|
|
# a grab bag of classic utils I probably want installed by default
|
|
environment.systemPackages = with pkgs; [
|
|
feh
|
|
jq
|
|
];
|
|
}
|