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
|
2023-02-04 11:53:42 +00:00
|
|
|
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-03-13 19:22:20 +00:00
|
|
|
font-manager
|
2023-02-01 13:31:56 +00:00
|
|
|
gegl
|
|
|
|
gimp
|
|
|
|
git
|
2023-02-24 15:09:10 +00:00
|
|
|
handbrake
|
2023-02-01 13:31:56 +00:00
|
|
|
imagemagick
|
2023-02-04 11:53:42 +00:00
|
|
|
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
|
2023-02-03 12:36:15 +00:00
|
|
|
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
|
2023-03-12 11:55:04 +00:00
|
|
|
ranger
|
2023-02-01 13:31:56 +00:00
|
|
|
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
|
2023-03-10 11:49:45 +00:00
|
|
|
(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
|
|
|
|
];
|
|
|
|
})
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|