9 lines
152 B
Nix
9 lines
152 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# install calibre for ebook management and kobo syncing
|
|
environment.systemPackages = with pkgs; [
|
|
calibre
|
|
];
|
|
}
|