You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
732 B
Nix
31 lines
732 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
inherit (lib) mkIf mkMerge mkThenElse;
|
|
annuaire = config.r6d.machines;
|
|
currentMachine = annuaire."${config.networking.fqdn}";
|
|
flags = currentMachine.configurationFlags;
|
|
in
|
|
|
|
mkIf flags.internetSuite {
|
|
|
|
# Paquets
|
|
environment.systemPackages = with pkgs; [
|
|
# Clients Internet
|
|
|
|
## Réseaux sociaux
|
|
#turses # client twitter en ncurse
|
|
#python39Packages.rainbowstream # client twitter en console
|
|
#rtv # client reddit en console
|
|
|
|
## Mail & Discussion (texte, audio)
|
|
mutt
|
|
|
|
## Sauvegarde nuagique (cloud storage)
|
|
#rclone
|
|
|
|
## P2P
|
|
rtorrent # outil de téléchargement de torrent & magnet
|
|
];
|
|
}
|