nixos-config/packages/pkg-customization.nix

16 lines
179 B
Nix
Raw Normal View History

2024-08-04 19:06:02 +02:00
{ pkgs, pkgs-stable, ... }:
2024-08-03 13:43:50 +02:00
{
environment.systemPackages =
(with pkgs; [
kde-rounded-corners
neofetch
ibm-plex
])
++
(with pkgs-stable; [
]);
}