nixos-config/hosts/nixos-laptop/config/system_packages.nix
2026-07-03 21:56:32 +02:00

29 lines
1.2 KiB
Nix

{ config, pkgs, ... }:
{
# Outils système / build essentiels (équiv. base-devel, git, etc.).
# Les applis graphiques utilisateur sont dans home-manager (home/).
environment.systemPackages = with pkgs; [
# base / build
git vim gnumake gcc wget curl unzip tree
# CLI utiles présents dans ta liste pacman
btop # btop
fastfetch # fastfetch
ripgrep # ripgrep
tmux # tmux
translate-shell # translate-shell
xclip # xclip
wl-clipboard # wl-clipboard
pass # pass
bitwarden-cli # (bitwarden : GUI côté user, CLI ici)
powertop # powertop
brightnessctl # brightnessctl
ntfs3g # ntfs-3g
pciutils usbutils inxi # inxi + diagnostics
gnupg
pinentry-curses
];
# Empreintes digitales / imprimante / flatpak déclarés en services.
services.flatpak.enable = true; # flatpak
}