From 1beb8fcd9e41239e868078b4f805ac7c9776ff86 Mon Sep 17 00:00:00 2001 From: Lucas Sta Maria Date: Mon, 12 Aug 2024 23:08:00 -0700 Subject: [PATCH] fix(nix): add libertine font Signed-off-by: Lucas Sta Maria --- nix/hosts/framework/home.nix | 1 + nix/hosts/framework/sys.nix | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/nix/hosts/framework/home.nix b/nix/hosts/framework/home.nix index 5eb8831..92581f8 100644 --- a/nix/hosts/framework/home.nix +++ b/nix/hosts/framework/home.nix @@ -81,6 +81,7 @@ roboto-mono jetbrains-mono noto-fonts-cjk-sans + libertine ]; emacsPackages = with pkgs.emacsPackages; [ mu4e ]; pythonPackages = with pkgs.python312Packages; [ python-lsp-server ]; diff --git a/nix/hosts/framework/sys.nix b/nix/hosts/framework/sys.nix index a33126b..2668d6c 100644 --- a/nix/hosts/framework/sys.nix +++ b/nix/hosts/framework/sys.nix @@ -27,6 +27,7 @@ roboto-mono jetbrains-mono noto-fonts-cjk-sans + libertine ]; }; @@ -77,7 +78,8 @@ wantedBy = [ "graphical-session.target" ]; partOf = [ "graphical-session.target" ]; serviceConfig = { - ExecStart = "${pkgs.deadd-notification-center}/bin/deadd-notification-center"; + ExecStart = + "${pkgs.deadd-notification-center}/bin/deadd-notification-center"; Restart = "always"; RestartSec = 3; };