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