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.
16 lines
495 B
Nix
16 lines
495 B
Nix
9 years ago
|
{ config, libs, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
# Securité
|
||
9 years ago
|
gnome3.seahorse # gestionnaire graphique de clef GPG
|
||
|
pass # gestionnaire de mots de passe
|
||
|
pwgen # générateur de mots de passe
|
||
|
slock # vérouiller l''écran. "cannot disable the out-of-memory killer for this process (make sure to suid or sgid slock)" --> en root
|
||
|
yubikey-personalization-gui # utilisation de la clef Yubikey
|
||
9 years ago
|
];
|
||
|
}
|