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" ''
|
# (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 = [
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
./neovim
|
./neovim
|
||||||
./session-vars
|
./session-vars
|
||||||
./tmux
|
./tmux
|
||||||
|
./utils
|
||||||
./vscode
|
./vscode
|
||||||
./zsh
|
./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