configuration.nix/system/packages.nix
2023-03-18 21:43:48 +05:30

28 lines
527 B
Nix

{ pkgs, ... }: {
fonts = {
enableDefaultFonts = true;
fontDir.enable = true;
fonts = with pkgs; [
cantarell-fonts
liberation_ttf
(nerdfonts.override { fonts = [ "FiraCode" ]; })
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
];
};
programs = {
git.enable = true;
neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
xwayland.enable = true;
zsh.enable = true;
};
environment.pathsToLink = [ "/share/zsh" ];
}