diff options
| author | Grigory Shipunov | 2022-07-14 22:47:45 +0200 |
|---|---|---|
| committer | Grigory Shipunov | 2022-07-14 22:47:45 +0200 |
| commit | 921677a401505f06fc3b806566c68be61108f58c (patch) | |
| tree | c27ed5746e435649ac1df7728a658915d7f78b83 /modules | |
| parent | 428a122acdbed2e65b6a023318353e0367b4a76a (diff) | |
nix flake update
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/graphical.nix | 16 | ||||
| -rw-r--r-- | modules/mail.nix | 5 |
2 files changed, 12 insertions, 9 deletions
diff --git a/modules/graphical.nix b/modules/graphical.nix index 3eb009c..0d8e4d3 100644 --- a/modules/graphical.nix +++ b/modules/graphical.nix @@ -26,7 +26,7 @@ #on the desktop, we need nice fonts ^^ fonts.fonts = with pkgs; [ monoid - (nerdfonts.override { fonts = [ "Monoid" "Hack" ]; }) + (nerdfonts.override { fonts = [ "Monoid" "Hack" "FiraMono" ]; }) font-awesome dejavu_fonts julia-mono @@ -38,8 +38,6 @@ corefonts dina-font fira - fira-code - fira-code-symbols fira-mono hack-font liberation_ttf @@ -119,6 +117,7 @@ xdg.portal = { enable = true; wlr.enable = true; + extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; }; services.udisks2.enable = true; @@ -129,15 +128,14 @@ lock = "udisksctl lock -b"; }; - qt5.platformTheme = "gtk"; - - services.gnome.gnome-keyring.enable = true; - - programs.evolution = { + qt5 = { enable = true; - plugins = [ pkgs.evolution-ews ]; + platformTheme = "gnome"; + style ="adwaita-dark"; }; + services.gnome.gnome-keyring.enable = true; + # required to autounlock gnome-keyring services.xserver = { enable = true; diff --git a/modules/mail.nix b/modules/mail.nix index 01538f8..f3aa5bf 100644 --- a/modules/mail.nix +++ b/modules/mail.nix @@ -1,6 +1,11 @@ { pkgs, ... }: { environment.systemPackages = with pkgs; [ + isync + msmtp neomutt + notmuch + pass + w3m ]; programs.msmtp.enable = true; |
