nix-configurations/home/features/desktop/crypto.nix

26 lines
466 B
Nix

<<<<<<< HEAD
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.features.desktop.crypto;
in {
options.features.desktop.crypto.enable = mkEnableOption "Enable Crypto";
config = mkIf cfg.enable {
home.packages = with pkgs; [ bisq-desktop monero-gui trezord trezor-suite ];
};
=======
{ pkgs, ... }:
{
home.packages = with pkgs; [
bisq-desktop
monero-gui
trezord
trezor-suite
];
>>>>>>> f7c149b (Various changes in home-config)
}