48 lines
653 B
Nix
48 lines
653 B
Nix
{ pkgs, ... }: {
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
wget
|
|
kitty
|
|
gdu
|
|
jamesdsp
|
|
grimblast
|
|
nitch
|
|
adwaita-icon-theme
|
|
gtrash
|
|
wl-clipboard
|
|
unzip
|
|
p7zip
|
|
tree-sitter
|
|
nodejs
|
|
nixfmt
|
|
decibels
|
|
nwg-look
|
|
mpc
|
|
python3
|
|
basedpyright
|
|
waypaper
|
|
nix-search
|
|
rofi-calc
|
|
renoise
|
|
pwvucontrol
|
|
lsof
|
|
gcc
|
|
picard
|
|
klassy
|
|
exiftool
|
|
tlrc
|
|
libnotify
|
|
trash-cli
|
|
obsidian
|
|
nicotine-plus
|
|
kdePackages.breeze
|
|
nemo
|
|
];
|
|
|
|
fonts.packages = with pkgs; [
|
|
nerd-fonts.caskaydia-mono
|
|
nerd-fonts.symbols-only
|
|
nerd-fonts.jetbrains-mono
|
|
];
|
|
}
|