116 lines
3.1 KiB
Nix
Executable File
116 lines
3.1 KiB
Nix
Executable File
{config, pkgs, libs, inputs, nix-flatpak, ...}:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
#Essenteals (CLI Only)
|
|
wget #A tool for quickly downloading things from the Web
|
|
micro-with-xclip #Micro text editor with xclip for clipboard
|
|
thefuck #Error correction in case commands are wrong. Type: 'fuck'
|
|
jdk23 #Java Development Kit 23
|
|
python312 #Python 3.12
|
|
python312Packages.pip #Pip for Python 3.12
|
|
python312Packages.cmake #The CMake tool to manage project build configurations
|
|
fastfetch #A utility to see information about your machine
|
|
btop #A replacement for htop to see your machines resources
|
|
git #Git ... no need to explain
|
|
efibootmgr
|
|
zip #A utility for ZIP archives
|
|
unzip #A utility for ZIP archives
|
|
rar #A utility for RAR archives
|
|
gnutar #A utility for .tar archives
|
|
cron #A tool to set up commands to run scheduled
|
|
tmux #A tool to let command windows contiune to run in the background
|
|
home-manager #A package to also edit the user Configuration, like with nix
|
|
konsave #A package to transfer the look and feel of KDE Plasma to other machines
|
|
ocs-url
|
|
kdePackages.plasma-workspace
|
|
kdePackages.kdialog
|
|
openssh #SSH
|
|
zoxide #Alternatice to cd, browse files
|
|
fzf-zsh #Search for file names
|
|
coreutils-full
|
|
multipath-tools
|
|
docker
|
|
docker-compose
|
|
plymouth
|
|
mesa
|
|
fprintd
|
|
|
|
#Programming
|
|
#jetbrains.pycharm-community #The PyCharm IDE to edit Python code
|
|
jetbrains.idea-community #The IntelliJ IDE to edit Java code
|
|
#jetbrains.clion #The CLion IDE to edit and compile c/c++ code
|
|
#racket #The racket Programming language, with DrRacket IDE, for University (*Not* because it's my favourite)
|
|
rustup #Rust Programming Toolchain
|
|
#go #Go Programming Language
|
|
gcc
|
|
pkg-config
|
|
vscode #Editor for all kinds of programms
|
|
nodejs_22
|
|
|
|
#Desktop Applications
|
|
vlc
|
|
#steam
|
|
#heroic
|
|
lutris
|
|
#putty Need to find alternative as it sucks on linux
|
|
mission-center
|
|
trayscale
|
|
spotify
|
|
rpi-imager
|
|
kdePackages.yakuake
|
|
#atlauncher
|
|
discord
|
|
wineWowPackages.stagingFull
|
|
winetricks
|
|
#whatsapp-for-linux
|
|
#obs-studio
|
|
#i2p
|
|
gparted #Disk partition Manager
|
|
#rustdesk
|
|
realvnc-vnc-viewer
|
|
eddie #AirVPN desktop client
|
|
chromium #For Youtube app to work
|
|
kdePackages.bluez-qt
|
|
#latte-dock
|
|
moonlight-qt
|
|
kitty
|
|
tdrop
|
|
|
|
#CLI tools
|
|
pdftk
|
|
yt-dlp
|
|
tailscale
|
|
speedtest-cli
|
|
#duplicati
|
|
#ollama
|
|
cloudflare-warp
|
|
ddrescue
|
|
texliveFull #LaTeX PDF maker
|
|
lazygit
|
|
gtypist
|
|
];
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"dotnet-sdk-6.0.428"
|
|
"dotnet-runtime-6.0.36"
|
|
];
|
|
|
|
services.flatpak = {
|
|
enable = true;
|
|
|
|
remotes = [
|
|
{
|
|
name = "flathub";
|
|
location = "https://dl.flathub.org/repo/flathub.flatpakrepo";
|
|
}
|
|
];
|
|
packages = [
|
|
{
|
|
appId = "org.vinegarhq.Sober";
|
|
origin = "flathub";
|
|
#commit = "e28fd81675b0871614ccdc8fc66c6da6761dd11333a65900a0451edf07ef0ea6";
|
|
}
|
|
];
|
|
};
|
|
}
|