From e6f48c1e30d0b5ccc771dd7b270947784f428824 Mon Sep 17 00:00:00 2001 From: Ivan Bushchik Date: Sun, 16 Jul 2023 16:50:02 +0300 Subject: [PATCH] Move fonts and dbus to graphical.nix --- common/graphical.nix | 9 +++++++++ machines/stella/configuration.nix | 8 -------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/common/graphical.nix b/common/graphical.nix index 79de445..349767c 100644 --- a/common/graphical.nix +++ b/common/graphical.nix @@ -15,4 +15,13 @@ alsa.enable = true; pulse.enable = true; }; + + services.dbus.enable = true; + + fonts.fonts = with pkgs; [ + noto-fonts + noto-fonts-cjk + noto-fonts-emoji + jetbrains-mono + ]; } \ No newline at end of file diff --git a/machines/stella/configuration.nix b/machines/stella/configuration.nix index b673133..075aac2 100644 --- a/machines/stella/configuration.nix +++ b/machines/stella/configuration.nix @@ -23,14 +23,6 @@ settings.PasswordAuthentication = false; }; - services.dbus.enable = true; - fonts.fonts = with pkgs; [ - noto-fonts - noto-fonts-cjk - noto-fonts-emoji - jetbrains-mono - ]; - system.stateVersion = "23.05"; }