Add base module for all machines

This commit is contained in:
Pedro Rey Anca 2025-10-16 15:52:39 +02:00
parent 943522935b
commit 95b3be48f1
Signed by: peprolinbot
GPG key ID: 053EA6E00116533A
2 changed files with 13 additions and 0 deletions

7
modules/base.nix Normal file
View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
# Must-have packages
environment.systemPackages = with pkgs; [
vim
rsync
];
}