mirror of
https://git.adityakumar.xyz/nix-conf.git
synced 2024-11-09 23:49:43 +00:00
add utils
This commit is contained in:
parent
80a8ab4b72
commit
a49ccce18d
3 changed files with 31 additions and 23 deletions
|
@ -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 = [
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
./neovim
|
||||
./session-vars
|
||||
./tmux
|
||||
./utils
|
||||
./vscode
|
||||
./zsh
|
||||
];
|
||||
|
|
30
modules/home-manager/utils/default.nix
Normal file
30
modules/home-manager/utils/default.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue