diff --git a/desktop/desktop.nix b/desktop/desktop.nix index 1661eed..a391e85 100644 --- a/desktop/desktop.nix +++ b/desktop/desktop.nix @@ -15,7 +15,6 @@ in # Paquets environment.systemPackages = with pkgs; mkIf profiles.isDesktop [ - # A trier cowsay fgallery # générateur de gallerie statique http://www.thregr.org/~wavexx/software/fgallery/ @@ -23,15 +22,6 @@ in xclip # manipulation du clipboard X depuis la console ]; - # Polices supplémentaires - fonts.fonts = with pkgs; mkIf profiles.isDesktop [ - fira # police créée pour Firefox - fira-code # idem fira-mono + ligatures pour la programmation - fira-mono # dérivée de fira en monospace - hack-font # police monospace créée explicitement pour coder - hasklig # police dérivée de source-code-pro mais avec des ligatures - ]; - nixpkgs.config.packageOverrides = pkgs: { clawsMail = pkgs.clawsMail.override { enablePluginFancy = true; diff --git a/public/app-bureau.nix b/public/app-bureau.nix index c535475..9521d43 100644 --- a/public/app-bureau.nix +++ b/public/app-bureau.nix @@ -30,4 +30,13 @@ mkIf profiles.isDesktop { ## Terminal sakura # terminal ]; + + # Polices supplémentaires + fonts.fonts = with pkgs; mkIf profiles.isDesktop [ + fira # police créée pour Firefox + fira-code # idem fira-mono + ligatures pour la programmation + fira-mono # dérivée de fira en monospace + hack-font # police monospace créée explicitement pour coder + hasklig # police dérivée de source-code-pro mais avec des ligatures + ]; }