nix/hosts/work/includes/home-manager.nix
Yorick Barbanneau 41f48aa208 feat(host:work): integrate Nix app in Gnome
Add statement for Nix-installed application into Gnome application in
order have Firefox, Foot and other available
2024-09-10 10:49:51 +02:00

22 lines
392 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
slurp
wl-clipboard
];
targets.genericLinux.enable = true;
xdg.mime.enable = true;
}