1
Fork 0
dotfiles/.bauke/nix/stardust/packages.nix

64 lines
1.0 KiB
Nix
Raw Normal View History

2023-02-01 13:31:56 +00:00
# The list of system packages to install.
{ pkgs, ... }:
{
environment = {
systemPackages = with pkgs; [
bat
catppuccin-cursors
chromium
delta
deno
direnv
2023-02-02 11:00:11 +00:00
exa
2023-02-01 13:31:56 +00:00
ffmpeg
2023-02-02 11:00:11 +00:00
firefox
2023-02-01 13:31:56 +00:00
gegl
gimp
git
imagemagick
kitty
libnotify
librewolf
mat2
mpv
nodejs
nodePackages.pnpm
numlockx
2023-02-01 13:31:56 +00:00
nvitop
osu-lazer
pavucontrol
picard
pop-icon-theme
python310Packages.pipx
qalculate-gtk
restic
ripgrep
rnix-lsp
rustup
standardnotes
starship
steam
tauon
tea
transmission-gtk
vscodium.fhs
xarchiver
xclip
xfce.xfce4-pulseaudio-plugin
xfce.xfce4-timer-plugin
xfce.xfce4-whiskermenu-plugin
2023-02-02 11:00:11 +00:00
xorg.libXcursor
2023-02-01 13:31:56 +00:00
(wrapOBS {
plugins = with obs-studio-plugins; [
input-overlay
obs-pipewire-audio-capture
obs-source-record
obs-vkcapture
];
})
];
};
}