Added Kate to kids dev

This commit is contained in:
Craige McWhirter 2020-03-25 18:07:51 +10:00
parent bd6ec8415b
commit 1bcbf15ef0
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA
2 changed files with 12 additions and 0 deletions

View file

@ -8,6 +8,7 @@
../hardware/lenovo_x201.nix
../roles/desktop_common.nix
../roles/haskell-dev.nix
../roles/kids-dev.nix
];
# Use the GRUB 2 boot loader.

11
roles/kids-dev.nix Normal file
View file

@ -0,0 +1,11 @@
# Configuration for Haskell development
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
kate # Multi-document editor with syntax highlighting
];
}