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

114 lines
1.9 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-04-19 09:54:52 +00:00
apngasm
2023-02-01 13:31:56 +00:00
bat
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
clonehero
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-06-12 10:04:52 +00:00
dotenv-linter
2023-05-13 10:02:12 +00:00
dupeguru
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
handbrake
2023-03-17 11:26:02 +00:00
hexyl
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
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
2023-05-20 22:23:42 +00:00
mkvtoolnix
2023-02-01 13:31:56 +00:00
mpv
2023-05-01 09:53:17 +00:00
nitrogen
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-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
2023-03-12 11:55:04 +00:00
ranger
2023-02-01 13:31:56 +00:00
restic
2023-05-09 09:18:48 +00:00
resvg
2023-02-01 13:31:56 +00:00
ripgrep
rnix-lsp
rustup
2023-05-02 11:45:49 +00:00
shotcut
2023-03-09 18:21:21 +00:00
sqlite
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
2023-06-19 16:43:41 +00:00
wireshark
2023-02-01 13:31:56 +00:00
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 { })
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
];
})
];
};
}