mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 20:40:24 +01:00
11 lines
185 B
Nix
11 lines
185 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages =
|
|
with pkgs;
|
|
(lib.optionals pkgs.stdenv.isx86_64 [
|
|
# https://joplinapp.org/help/
|
|
joplin # joplin-cli
|
|
joplin-desktop
|
|
]);
|
|
}
|