mio-ops/profiles/kids-dev.nix

13 lines
186 B
Nix
Raw Normal View History

2020-03-25 08:07:51 +00:00
# Configuration for Haskell development
{ config, pkgs, ... }:
{
2021-11-16 04:57:23 +00:00
environment.systemPackages = with pkgs;
[
kate # Multi-document editor with syntax highlighting
];
2020-03-25 08:07:51 +00:00
}