nix/hosts/work/includes/home-manager.nix

22 lines
397 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
dejavu_fonts
font-awesome
lato
liberation_ttf
libertine
libnotify
(nerdfonts.override {
fonts = [
"FiraCode"
];
})
noto-fonts-emoji
noto-fonts-cjk-sans
slurp
wl-clipboard
];
targets.genericLinux.enable = true;
xdg.mime.enable = true;
}