mirror of
https://github.com/librephoenix/nixos-config
synced 2025-07-06 06:52:13 +05:30
Condensed home.nix into many more modules!
This commit is contained in:
parent
3fd5341fbe
commit
4a44c06a43
14 changed files with 258 additions and 155 deletions
31
user/shell/cli-collection.nix
Normal file
31
user/shell/cli-collection.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
# Collection of useful CLI apps
|
||||
home.packages = with pkgs; [
|
||||
# Command Line
|
||||
neofetch lolcat cowsay
|
||||
cava
|
||||
gnugrep gnused
|
||||
killall
|
||||
libnotify
|
||||
bat exa fd bottom ripgrep
|
||||
rsync
|
||||
tmux
|
||||
htop
|
||||
hwinfo
|
||||
unzip
|
||||
octave
|
||||
brightnessctl
|
||||
w3m
|
||||
fzf
|
||||
pandoc
|
||||
(pkgs.callPackage ../pkgs/ytsub.nix { })
|
||||
(pkgs.callPackage ../pkgs/pokemon-colorscripts.nix { })
|
||||
];
|
||||
|
||||
imports = [
|
||||
../bin/phoenix.nix # My nix command wrapper
|
||||
../bin/ytsub-wrappers.nix # My ytsub wrapper
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue