refactor: complete rewrite
This commit is contained in:
parent
19a4bbda3c
commit
8e81943cf9
399 changed files with 3396 additions and 8042 deletions
63
modules/home/console/tools/utils.nix
Normal file
63
modules/home/console/tools/utils.nix
Normal file
|
|
@ -0,0 +1,63 @@
|
|||
{
|
||||
pkgs,
|
||||
lib,
|
||||
osConfig,
|
||||
self',
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkIf;
|
||||
inherit (builtins) attrValues;
|
||||
|
||||
cfg = osConfig.ooknet.console.tools.utils;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = attrValues {
|
||||
inherit
|
||||
(pkgs)
|
||||
bc # Calculator
|
||||
|
||||
# file utility
|
||||
|
||||
duf
|
||||
du-dust
|
||||
fd
|
||||
ripgrep
|
||||
# archive
|
||||
|
||||
zip
|
||||
unzip
|
||||
unrar
|
||||
# file transfer
|
||||
|
||||
rsync
|
||||
wget
|
||||
httpie # Better curl
|
||||
|
||||
# resource manager
|
||||
|
||||
powertop
|
||||
#shell scripting
|
||||
|
||||
gum
|
||||
# audio ctrl
|
||||
|
||||
pamixer
|
||||
diffsitter # Better diff
|
||||
jq # JSON pretty printer and manipulator
|
||||
tldr # Community maintained help pages
|
||||
progress
|
||||
killall
|
||||
acpi
|
||||
# Notifications
|
||||
|
||||
libnotify
|
||||
# Nix tooling
|
||||
|
||||
alejandra
|
||||
;
|
||||
|
||||
#AI
|
||||
inherit (self'.packages) repopack;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue