nixfiles/modules/common/default.nix

14 lines
149 B
Nix
Raw Normal View History

2024-03-16 14:15:23 +00:00
{pkgs, config, ...}:
2024-03-16 12:21:25 +00:00
{
imports = [
2024-03-16 13:36:39 +00:00
./locales.nix
2024-03-16 12:21:25 +00:00
];
2024-03-16 14:15:23 +00:00
environment.systemPackages = with pkgs; [
git
just
neovim
wget
];
2024-03-16 12:21:25 +00:00
}