configuration.nix/system/packages.nix

35 lines
687 B
Nix
Raw Normal View History

2023-03-15 22:11:59 +05:30
{ pkgs, ... }: {
2023-03-18 21:43:48 +05:30
fonts = {
enableDefaultFonts = true;
fontDir.enable = true;
fonts = with pkgs; [
2023-03-22 23:28:58 +05:30
cantarell-fonts
liberation_ttf
(nerdfonts.override { fonts = [ "FiraCode" ]; })
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
];
};
2023-03-15 22:11:59 +05:30
programs = {
git.enable = true;
2023-03-22 23:28:11 +05:30
gnupg.agent = {
enable = true;
enableExtraSocket = true;
enableSSHSupport = true;
pinentryFlavor = "gnome3";
};
2023-03-15 22:11:59 +05:30
neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
};
xwayland.enable = true;
zsh.enable = true;
};
environment.pathsToLink = [ "/share/zsh" ];
}