14 lines
278 B
Nix
14 lines
278 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
config = lib.mkIf config.home.desktop.enable {
|
|
home.packages = (with pkgs; [
|
|
liberation_ttf
|
|
noto-fonts
|
|
sarasa-gothic
|
|
twitter-color-emoji
|
|
]) ++ (with pkgs.nerd-fonts; [
|
|
ubuntu
|
|
ubuntu-mono
|
|
]);
|
|
};
|
|
}
|