nixdots/system/programs/default.nix

15 lines
284 B
Nix
Raw Normal View History

2024-03-21 20:47:25 +00:00
{ pkgs, lib, ... }: {
imports = [
./nano.nix
];
# Basic list of must-have packages for all systems
# TODO: Move these to home-manager, no need for system wide deps
# although maybe keep vim
environment.systemPackages = with pkgs; [
vim
gnupg
delta
];
}