diff --git a/home/features/desktop/crypto.nix b/home/features/desktop/crypto.nix new file mode 100644 index 0000000..f8132b5 --- /dev/null +++ b/home/features/desktop/crypto.nix @@ -0,0 +1,15 @@ +{ + 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; [bisq2 monero-gui trezor-suite]; + }; +} diff --git a/home/features/desktop/default.nix b/home/features/desktop/default.nix index 8ab563d..ced0c9b 100644 --- a/home/features/desktop/default.nix +++ b/home/features/desktop/default.nix @@ -1,6 +1,7 @@ {pkgs, ...}: { imports = [ ./coding.nix + ./crypto.nix ./fonts.nix ./gaming.nix ./hyprland.nix diff --git a/home/m3tam3re/m3-kratos.nix b/home/m3tam3re/m3-kratos.nix index 6c03515..33c5baf 100644 --- a/home/m3tam3re/m3-kratos.nix +++ b/home/m3tam3re/m3-kratos.nix @@ -55,6 +55,7 @@ in { starship.enable = true; }; desktop = { + crypto.enable = true; coding.enable = true; gaming.enable = true; hyprland.enable = true; diff --git a/overlays/mods/n8n.nix b/overlays/mods/n8n.nix index 16a4f19..053836c 100644 --- a/overlays/mods/n8n.nix +++ b/overlays/mods/n8n.nix @@ -7,11 +7,11 @@ prev.n8n.overrideAttrs (oldAttrs: rec { owner = "n8n-io"; repo = "n8n"; rev = "n8n@${version}"; - hash = "sha256-hFCK9eboOsA3wsrpCs0Vn70zITOttTT3PmV/MtMzV8I="; + hash = "sha256-z1UDjamwoXRCd+zWBXHUV0LEDZjbgFONS7i8cQppLFg="; }; pnpmDeps = prev.pnpm_9.fetchDeps { inherit pname version src; - hash = "sha256-ggTxmDWnvmzWxj/FpGmsuGyUf9NwN1XxeMLJ20MmEWc="; + hash = "sha256-1vheGCTGacrQMVJjYrEuv4NC4ImSb+WAbYLXpEithnM="; }; })