nixos-old/packages.nix

12 lines
199 B
Nix
Raw Normal View History

2022-10-28 18:00:40 +00:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
2022-10-28 20:06:35 +00:00
];
2022-10-30 09:02:22 +00:00
fonts.fonts = with pkgs; [
2022-10-30 15:42:53 +00:00
noto-fonts
2022-10-30 09:02:22 +00:00
(nerdfonts.override { fonts = [ "CascadiaCode" ]; })
2022-11-05 13:18:31 +00:00
xfce.xfce4-settings
2022-10-30 09:02:22 +00:00
];
}