summaryrefslogtreecommitdiff
path: root/hosts/radish/packages.nix
blob: a6be12fab0ccebe74275f8cbc5c23a03a51118e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, ... }:

{
  this.sets = {
    dev.grammars = true;
    net.tools.minimal = true;
    sync.tools = true;
  };

  environment.systemPackages = with pkgs; [
    git
    ruby
  ];

  services.openssh.enable = true;
}