changes on main pc

This commit is contained in:
afoucaultc 2026-07-05 20:10:11 +02:00
parent 60ebe96728
commit 2ef8eba58a
20 changed files with 155 additions and 84 deletions

View file

@ -0,0 +1,6 @@
{ pkgs, inputs, ... }:
{
programs.btop = {
enable = true;
};
}

View file

@ -0,0 +1,6 @@
{ config, pkgs, ... }:
{
programs.mpv = {
enable = true;
};
}

View file

@ -4,7 +4,6 @@
# --- Others
hyfetch
fastfetch
htop
pkg-config
# --- Bureautique ---
@ -13,7 +12,6 @@
zotero
# --- Communication ---
thunderbird
signal-desktop
vesktop
mattermost-desktop
@ -21,17 +19,21 @@
# --- Multimédia ---
gimp
inkscape
mpv
nomacs
imagemagick
librsvg
streamlink
kdePackages.gwenview
audacity
# --- Maths ---
octave
gnuplot
# --- Réseau / streaming ---
(octave.withPackages (ps: with ps; [
image # octave-image
statistics # octave-statistics
symbolic # octave-symbolic
# dataframe # (octave-dataframe : indispo dans nixpkgs, à compiler via pkg si besoin)
]))
gnuplot # gnuplot
# --- Gestion de fichiers KDE ---
kdePackages.dolphin
@ -41,7 +43,18 @@
kdePackages.ark
kdePackages.kdegraphics-thumbnailers
kdePackages.ffmpegthumbs
];
nwg-look
papirus-icon-theme
mako
cliphist
grim slurp
mullvad-vpn
];
services.gpg-agent = {
enable = true;
pinentry.package = pkgs.pinentry-gnome3;
};
services.protonmail-bridge.enable = true;
}

View file

@ -4,7 +4,6 @@
# --- Infos système / divers ---
hyfetch # hyfetch
fastfetch # fastfetch
btop # btop
pkg-config
# --- Bureautique ---
@ -18,13 +17,9 @@
mattermost-desktop # mattermost-desktop
protonmail-bridge # protonmail-bridge (CLI/bridge)
# --- Gestionnaire de mots de passe ---
pass # pass
# --- Multimédia (léger) ---
gimp # gimp
inkscape # inkscape
mpv # mpv
nomacs # nomacs (AUR) — visionneuse d'images légère
imagemagick # imagemagick
librsvg # librsvg

View file

@ -0,0 +1,6 @@
{ pkgs, inputs, ... }:
{
programs.pass = {
enable = true;
};
}

View file

@ -0,0 +1,6 @@
{ pkgs, inputs, ... }:
{
programs.tmux = {
enable = true;
};
}