mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
18 lines
233 B
Nix
18 lines
233 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
|
|
];
|
|
}
|