13 lines
186 B
Nix
13 lines
186 B
Nix
# Configuration for Haskell development
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
environment.systemPackages = with pkgs;
|
|
[
|
|
kate # Multi-document editor with syntax highlighting
|
|
];
|
|
|
|
}
|