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

80 lines
1.3 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; [
2023-02-14 17:05:32 +00:00
airshipper
2023-02-01 13:31:56 +00:00
bat
2023-03-04 18:46:47 +00:00
bottom
2023-02-01 13:31:56 +00:00
catppuccin-cursors
chromium
clonehero
2023-02-01 13:31:56 +00:00
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-14 17:05:32 +00:00
flameshot
2023-02-01 13:31:56 +00:00
gegl
gimp
git
handbrake
2023-02-01 13:31:56 +00:00
imagemagick
jq
2023-02-06 11:19:42 +00:00
keepassxc
2023-02-01 13:31:56 +00:00
kitty
libnotify
librewolf
2023-03-01 11:39:13 +00:00
limitcpu
lm_sensors
2023-03-08 17:01:18 +00:00
lutris
2023-02-01 13:31:56 +00:00
mat2
mpv
nodejs
nodePackages.pnpm
numlockx
2023-02-01 13:31:56 +00:00
nvitop
osu-lazer
pavucontrol
picard
pop-icon-theme
2023-02-09 13:05:06 +00:00
protonup-ng
2023-03-07 14:18:43 +00:00
protonvpn-gui
2023-02-01 13:31:56 +00:00
python310Packages.pipx
qalculate-gtk
restic
ripgrep
rnix-lsp
rustup
2023-03-09 18:21:21 +00:00
sqlite
sqlitebrowser
2023-02-01 13:31:56 +00:00
standardnotes
starship
steam
tauon
tea
transmission-gtk
vscodium.fhs
xarchiver
xclip
2023-02-22 10:31:49 +00:00
xdotool
2023-02-01 13:31:56 +00:00
xfce.xfce4-pulseaudio-plugin
xfce.xfce4-timer-plugin
xfce.xfce4-whiskermenu-plugin
2023-02-02 11:00:11 +00:00
xorg.libXcursor
(callPackage ./samrewritten.nix { })
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
];
})
];
};
}