summaryrefslogtreecommitdiff
path: root/archetypes/collections/desktop/crypto.nix
blob: f90919e427f3715d496b3d01874f469405273150 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, lib, config, ... }: let
	cfg = config._archetypes.collections.desktop.crypto;
in {
	options._archetypes.collections.desktop.crypto = {
		enable = lib.mkEnableOption "install crypto wallets";
	};

	config = lib.mkIf cfg.enable {
		environment.systemPackages = with pkgs; [
			sparrow
		];
	};
}