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