mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
23 lines
245 B
Nix
23 lines
245 B
Nix
{
|
|
pkgs,
|
|
self,
|
|
...
|
|
}: {
|
|
imports = with self.nixosModules; [
|
|
git
|
|
];
|
|
programs.zsh.enable = true;
|
|
environment.systemPackages = with pkgs; [
|
|
tmux
|
|
unzip
|
|
less
|
|
gnumake
|
|
gcc
|
|
|
|
jq
|
|
|
|
wget
|
|
curl
|
|
htop
|
|
];
|
|
}
|