13 lines
206 B
Nix
13 lines
206 B
Nix
{ config, pkgs, pkgs-unstable, ... }:
|
|
|
|
{
|
|
environment.systemPackages =
|
|
(with pkgs; [ # STABLE PACKAGES
|
|
btop
|
|
screen
|
|
])
|
|
++
|
|
(with pkgs-unstable; [ # UNSTABLE PACKAGES
|
|
bun
|
|
]);
|
|
}
|