Move fonts and dbus to graphical.nix

This commit is contained in:
Ivan Bushchik 2023-07-16 16:50:02 +03:00
parent a8ba0bf600
commit e6f48c1e30
No known key found for this signature in database
GPG key ID: 9F6DDABE11A2674D
2 changed files with 9 additions and 8 deletions

View file

@ -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
];
}

View file

@ -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";
}