moved programs.nix to modules dir

This commit is contained in:
Richie Cahill
2024-04-14 23:57:42 -04:00
committed by Alice Huston
parent 4a9f6a8983
commit c8a542408e
4 changed files with 0 additions and 43 deletions

7
modules/programs.nix Normal file
View File

@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
git
python3
];
}