Actualiser modules/software.nix
This commit is contained in:
+15
-4
@@ -6,29 +6,40 @@ let
|
||||
desktopName = "Outlook";
|
||||
comment = "Outlook Web";
|
||||
icon = "internet-mail";
|
||||
|
||||
exec = "${pkgs.chromium}/bin/chromium --app=https://outlook.office365.com/";
|
||||
categories = [ "Network" "Office" "Email" ];
|
||||
|
||||
categories = [
|
||||
"Network"
|
||||
"Office"
|
||||
"Email"
|
||||
];
|
||||
|
||||
terminal = false;
|
||||
};
|
||||
in
|
||||
{
|
||||
# Firefox ESR comme navigateur secondaire.
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
package = pkgs.firefox-esr;
|
||||
};
|
||||
|
||||
# Logiciels installés sur tous les postes.
|
||||
environment.systemPackages = with pkgs; [
|
||||
git
|
||||
|
||||
chromium
|
||||
|
||||
onlyoffice-desktopeditors
|
||||
|
||||
teams-for-linux
|
||||
outlookWeb
|
||||
|
||||
# FIDO2 / YubiKey
|
||||
pam_u2f
|
||||
libfido2
|
||||
yubikey-manager
|
||||
];
|
||||
|
||||
# Chromium comme navigateur par défaut.
|
||||
xdg.mime = {
|
||||
enable = true;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user