add laptop version
This commit is contained in:
parent
0ba7bf856f
commit
c7db34c243
729 changed files with 286689 additions and 18 deletions
29
hosts/nixos-laptop/config/system_packages.nix
Normal file
29
hosts/nixos-laptop/config/system_packages.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue