2024-04-12 22:03:29 +02:00
|
|
|
# which default packages to use for the system
|
|
|
|
{ inputs, outputs, profile-config, pkgs, ...}:
|
|
|
|
|
|
|
|
let
|
|
|
|
python-packages = ps: with ps; [
|
|
|
|
pandas
|
|
|
|
numpy
|
|
|
|
opencv4
|
|
|
|
ipython
|
|
|
|
];
|
|
|
|
in
|
|
|
|
{
|
|
|
|
|
|
|
|
# List packages installed in system profile. To search, run:
|
|
|
|
# $ nix search wget
|
|
|
|
environment.systemPackages = with pkgs; [
|
2024-04-21 20:09:31 +02:00
|
|
|
# inputs.vivado2019flake.vivado-2019_2
|
2024-04-12 22:03:29 +02:00
|
|
|
|
|
|
|
# security audits
|
|
|
|
lynis
|
|
|
|
element-desktop
|
|
|
|
jetbrains.idea-community
|
2024-04-29 13:17:46 +02:00
|
|
|
jetbrains.rust-rover
|
2024-04-12 22:03:29 +02:00
|
|
|
baobab
|
|
|
|
amdvlk
|
|
|
|
texlive.combined.scheme-full
|
|
|
|
android-tools
|
|
|
|
signal-desktop
|
|
|
|
nextcloud-client
|
2024-04-13 13:47:36 +02:00
|
|
|
# etcher
|
2024-04-12 22:03:29 +02:00
|
|
|
vlc
|
|
|
|
audacity
|
|
|
|
thunderbird
|
|
|
|
eclipses.eclipse-java
|
|
|
|
openjdk
|
|
|
|
firefox
|
|
|
|
# pkgs.nordvpn # nur.repos.LuisChDev.nordvpn
|
|
|
|
material-icons
|
|
|
|
material-design-icons
|
|
|
|
libreoffice
|
|
|
|
gimp
|
|
|
|
spotify
|
|
|
|
okular
|
|
|
|
# minecraft
|
|
|
|
prismlauncher-unwrapped
|
|
|
|
glfw-wayland-minecraft
|
|
|
|
glxinfo
|
|
|
|
# window manager
|
|
|
|
flameshot
|
|
|
|
feh
|
|
|
|
# Animeeeeee!
|
|
|
|
ani-cli # The stable version is very outdated
|
|
|
|
];
|
|
|
|
|
|
|
|
}
|