add utils

This commit is contained in:
Aditya 2024-04-12 11:06:56 +05:30
parent 80a8ab4b72
commit a49ccce18d
Signed by: aditya
SSH key fingerprint: SHA256:jL1IvWsjjlPtw6HvDIHfXfhO9IkIokNEyIfuFhSdoyU
3 changed files with 31 additions and 23 deletions

View file

@ -48,12 +48,6 @@
# (pkgs.writeShellScriptBin "my-hello" '' # (pkgs.writeShellScriptBin "my-hello" ''
# echo "Hello, ${config.home.username}!" # echo "Hello, ${config.home.username}!"
# '') # '')
xsel
wget
neofetch
htop
oh-my-zsh
git
chromium chromium
plasma5Packages.qtstyleplugin-kvantum plasma5Packages.qtstyleplugin-kvantum
kdeconnect kdeconnect
@ -64,42 +58,25 @@
joypixels joypixels
rustc rustc
cargo cargo
unzip
ocs-url
nextcloud-client nextcloud-client
duf
foliate foliate
mpv mpv
obsidian obsidian
dino dino
aria2
bitwarden
kitty-themes kitty-themes
p7zip
tdesktop tdesktop
libreoffice-fresh libreoffice-fresh
jetbrains-mono jetbrains-mono
yakuake yakuake
krita
filelight
inkscape
yt-dlp
ranger
libsForQt5.kwallet libsForQt5.kwallet
libsForQt5.kwallet-pam libsForQt5.kwallet-pam
libsForQt5.kwalletmanager libsForQt5.kwalletmanager
libsForQt5.ksshaskpass libsForQt5.ksshaskpass
cachix
direnv
git-lfs
nix-direnv
zathura zathura
starship starship
gnome.gnome-tweaks gnome.gnome-tweaks
gnome-extension-manager gnome-extension-manager
ripgrep ripgrep
inputs.nv.packages.x86_64-linux.default
inputs.nyaa.packages.x86_64-linux.default
]; ];
nixpkgs.config.permittedInsecurePackages = [ nixpkgs.config.permittedInsecurePackages = [

View file

@ -6,6 +6,7 @@
./neovim ./neovim
./session-vars ./session-vars
./tmux ./tmux
./utils
./vscode ./vscode
./zsh ./zsh
]; ];

View file

@ -0,0 +1,30 @@
{
inputs,
pkgs,
...
}: {
home.packages = with pkgs; [
aria2
bitwarden
cachix
direnv
duf
git
git-lfs
htop
filelight
neofetch
nix-direnv
ocs-url
p7zip
ranger
ripgrep
starship
unzip
wget
xsel
yt-dlp
inputs.nv.packages.x86_64-linux.default
inputs.nyaa.packages.x86_64-linux.default
];
}