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