Add statement for Nix-installed application into Gnome application in order have Firefox, Foot and other available
22 lines
392 B
Nix
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;
|
|
}
|