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

View file

@ -6,6 +6,7 @@
./neovim
./session-vars
./tmux
./utils
./vscode
./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
];
}