nix-config/modules/essentials/environment.nix

22 lines
316 B
Nix

{ pkgs, ... }:
{
programs.zsh.enable = true;
environment = {
pathsToLink = [ "/share/zsh" ];
sessionVariables = {
NIXOS_OZONE_WL = "1";
};
systemPackages = with pkgs; [
fprintd
polkit_gnome
];
};
fonts.packages = with pkgs; [
nerdfonts
jetbrains-mono
];
}