nixos-old/packages.nix

20 lines
353 B
Nix
Raw Normal View History

2023-02-22 14:44:23 +00:00
{ pkgs, ... }: {
2023-03-21 21:38:31 +00:00
environment.systemPackages = with pkgs; [
];
2023-03-18 10:47:06 +00:00
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
thunar-media-tags-plugin
];
};
2022-10-30 09:02:22 +00:00
fonts.fonts = with pkgs; [
2022-10-30 15:42:53 +00:00
noto-fonts
2023-03-19 10:01:36 +00:00
(unstable.nerdfonts.override { fonts = [ "CascadiaCode" ]; })
2022-10-30 09:02:22 +00:00
];
}