This commit is contained in:
jackjohn7 2026-03-26 01:30:09 -05:00
commit c5a26648be
13 changed files with 1211 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{ self, inputs, ... }: {
flake.nixosModules.development = { pkgs, lib, ... }: {
environment.systemPackages = with pkgs; [
vim
git
zed-editor
];
};
}