+crypto
This commit is contained in:
parent
262902c018
commit
a4d8d6890c
15
home/features/desktop/crypto.nix
Normal file
15
home/features/desktop/crypto.nix
Normal file
@ -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];
|
||||||
|
};
|
||||||
|
}
|
@ -1,6 +1,7 @@
|
|||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./coding.nix
|
./coding.nix
|
||||||
|
./crypto.nix
|
||||||
./fonts.nix
|
./fonts.nix
|
||||||
./gaming.nix
|
./gaming.nix
|
||||||
./hyprland.nix
|
./hyprland.nix
|
||||||
|
@ -55,6 +55,7 @@ in {
|
|||||||
starship.enable = true;
|
starship.enable = true;
|
||||||
};
|
};
|
||||||
desktop = {
|
desktop = {
|
||||||
|
crypto.enable = true;
|
||||||
coding.enable = true;
|
coding.enable = true;
|
||||||
gaming.enable = true;
|
gaming.enable = true;
|
||||||
hyprland.enable = true;
|
hyprland.enable = true;
|
||||||
|
@ -7,11 +7,11 @@ prev.n8n.overrideAttrs (oldAttrs: rec {
|
|||||||
owner = "n8n-io";
|
owner = "n8n-io";
|
||||||
repo = "n8n";
|
repo = "n8n";
|
||||||
rev = "n8n@${version}";
|
rev = "n8n@${version}";
|
||||||
hash = "sha256-hFCK9eboOsA3wsrpCs0Vn70zITOttTT3PmV/MtMzV8I=";
|
hash = "sha256-z1UDjamwoXRCd+zWBXHUV0LEDZjbgFONS7i8cQppLFg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
pnpmDeps = prev.pnpm_9.fetchDeps {
|
pnpmDeps = prev.pnpm_9.fetchDeps {
|
||||||
inherit pname version src;
|
inherit pname version src;
|
||||||
hash = "sha256-ggTxmDWnvmzWxj/FpGmsuGyUf9NwN1XxeMLJ20MmEWc=";
|
hash = "sha256-1vheGCTGacrQMVJjYrEuv4NC4ImSb+WAbYLXpEithnM=";
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user