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