- Move shell and font configs out of configuration.nix and into separate files - Add udiskie to dwm - Add kdeconnect for phone connection
18 lines
253 B
Nix
18 lines
253 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
fonts.fontDir.enable = true;
|
|
|
|
fonts.packages = with pkgs; [
|
|
corefonts
|
|
ubuntu_font_family
|
|
font-awesome
|
|
nerdfonts
|
|
noto-fonts-color-emoji
|
|
powerline
|
|
ipafont
|
|
baekmuk-ttf
|
|
nerdfonts
|
|
];
|
|
}
|