diff options
| author | Caroline Larimore <caroline@larimo.re> | 2024-07-19 00:01:14 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2024-07-19 00:01:14 -0700 |
| commit | 8976441188db64b5bcd0def77874968a03ac51a5 (patch) | |
| tree | 6700c80f2f54f6e03f630cf5899ba6aa749b7538 /core/packages.nix | |
| parent | 65174b4b5c05bb143e6681a4cbcd0a95f04987e2 (diff) | |
Create core module
Diffstat (limited to 'core/packages.nix')
| -rw-r--r-- | core/packages.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/core/packages.nix b/core/packages.nix new file mode 100644 index 0000000..bf30787 --- /dev/null +++ b/core/packages.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + git + vim + wget + killall + ]; +} |