nixdots/system/programs/default.nix

11 lines
169 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
environment.systemPackages = with pkgs; [
vim
];
}