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

126 lines
2.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-11-27 16:13:57 +00:00
android-studio
2023-04-19 09:54:52 +00:00
apngasm
unstable.atuin
2023-09-30 17:10:26 +00:00
autorestic
2023-02-01 13:31:56 +00:00
bat
2023-10-27 12:00:32 +00:00
bento4
2023-03-04 18:46:47 +00:00
bottom
2023-05-28 22:59:38 +00:00
calibre
2023-02-01 13:31:56 +00:00
catppuccin-cursors
chromium
2023-03-16 10:00:53 +00:00
clang
2023-04-22 10:10:21 +00:00
conky
2023-02-01 13:31:56 +00:00
delta
deno
2023-05-18 11:44:41 +00:00
dig
2023-02-01 13:31:56 +00:00
direnv
2023-05-13 10:02:12 +00:00
dupeguru
2023-10-21 15:12:41 +00:00
du-dust
2023-05-28 11:11:36 +00:00
eclipses.eclipse-java
2023-06-14 23:25:47 +00:00
element-desktop
2023-02-02 11:00:11 +00:00
exa
2023-05-22 13:01:17 +00:00
fd
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-03-13 19:22:20 +00:00
font-manager
2023-02-01 13:31:56 +00:00
gegl
gimp
git
2023-07-07 10:19:17 +00:00
git-lfs
2023-07-19 10:21:16 +00:00
glab
2023-10-24 10:27:39 +00:00
gnome.file-roller
2023-09-20 12:03:04 +00:00
gramps
handbrake
2023-03-17 11:26:02 +00:00
hexyl
2023-11-22 13:47:27 +00:00
ifuse
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
2023-11-22 13:47:27 +00:00
libimobiledevice
2023-02-01 13:31:56 +00:00
libnotify
2023-03-22 11:04:05 +00:00
libreoffice
2023-02-01 13:31:56 +00:00
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
2023-05-01 09:53:17 +00:00
nitrogen
nix-output-monitor
2023-02-01 13:31:56 +00:00
nodejs
nodePackages.pnpm
numlockx
2023-02-01 13:31:56 +00:00
nvitop
osu-lazer
pavucontrol
2023-05-20 13:13:47 +00:00
peek
2023-02-01 13:31:56 +00:00
picard
2023-03-17 11:26:02 +00:00
pkg-config
2023-06-07 13:32:48 +00:00
podman-compose
2023-02-01 13:31:56 +00:00
pop-icon-theme
2023-05-14 10:28:45 +00:00
prismlauncher
2023-02-09 13:05:06 +00:00
protonup-ng
2023-10-18 11:11:12 +00:00
protonvpn-cli
2023-03-07 14:18:43 +00:00
protonvpn-gui
python311Packages.argcomplete
python311Packages.pip
python311Packages.pipx
2023-02-01 13:31:56 +00:00
qalculate-gtk
restic
2023-05-09 09:18:48 +00:00
resvg
2023-02-01 13:31:56 +00:00
ripgrep
rnix-lsp
rustup
2023-10-30 13:33:30 +00:00
sqlite-interactive
2023-03-09 18:21:21 +00:00
sqlitebrowser
2023-02-01 13:31:56 +00:00
standardnotes
starship
steam
tauon
tea
2023-05-28 11:11:36 +00:00
temurin-bin
2023-02-01 13:31:56 +00:00
transmission-gtk
2023-06-05 10:40:01 +00:00
turbo
2023-06-05 10:41:06 +00:00
typst
typst-lsp
2023-06-13 17:47:39 +00:00
vagrant
2023-02-01 13:31:56 +00:00
vscodium.fhs
xarchiver
xclip
2023-02-22 10:31:49 +00:00
xdotool
2023-04-21 07:55:10 +00:00
xfce.xfce4-genmon-plugin
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 { })
(unstable.clonehero.overrideAttrs ({ postInstall ? "", ... }: {
# Remove the built-in songs from Clone Hero.
postInstall = postInstall + ''
rm -rf "$out/share/clonehero/StreamingAssets/songs"
mkdir "$out/share/clonehero/StreamingAssets/songs"
'';
}))
2023-02-01 13:31:56 +00:00
(wrapOBS {
plugins = with obs-studio-plugins; [
input-overlay
2023-06-05 10:41:19 +00:00
obs-livesplit-one
2023-02-01 13:31:56 +00:00
obs-pipewire-audio-capture
obs-source-record
obs-vkcapture
];
})
];
};
}