Compare commits

..

No commits in common. "8c7713c8bc357a189a46dcde0b2f32ae7de6ac28" and "8043192d6bc9145d81c9a09d8573012b4014175a" have entirely different histories.

7 changed files with 57 additions and 3 deletions

View File

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
./ghidra.nix
];
}

View File

@ -0,0 +1,20 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.ghidra.enable = mkOption {
type = types.bool;
default = false;
description = "enable ghidra";
};
config = mkIf config.smayzy.ghidra.enable {
environment.systemPackages = with pkgs; [ ghidra ];
};
}

View File

@ -5,8 +5,10 @@
./base-cli ./base-cli
./browser ./browser
./containers ./containers
./ctf
./de ./de
./displaymanager ./displaymanager
./ebook
./flatpak ./flatpak
./games ./games
./groups ./groups

View File

@ -0,0 +1,20 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.calibre.enable = mkOption {
type = types.bool;
default = false;
description = "enable calibre";
};
config = mkIf config.smayzy.calibre.enable {
environment.systemPackages = with pkgs; [ calibre ];
};
}

View File

@ -0,0 +1,6 @@
{ ... }:
{
imports = [
./calibre.nix
];
}

View File

@ -28,8 +28,10 @@ in
gaming.enable = true; gaming.enable = true;
}; };
arduino.enable = true; arduino.enable = true;
calibre.enable = true;
tor.enable = true; tor.enable = true;
chromium.enable = true; chromium.enable = true;
ghidra.enable = true;
firejail.enable = true; firejail.enable = true;
wireshark.enable = true; wireshark.enable = true;
alacritty.enable = true; alacritty.enable = true;
@ -50,8 +52,6 @@ in
element-desktop element-desktop
thunderbird thunderbird
kicad kicad
ghidra
calibre
neomutt neomutt
pass pass
isync isync

View File

@ -32,6 +32,7 @@ in
media.enable = true; media.enable = true;
}; };
arduino.enable = true; arduino.enable = true;
calibre.enable = true;
tor.enable = true; tor.enable = true;
alacritty.enable = true; alacritty.enable = true;
chromium.enable = true; chromium.enable = true;
@ -57,7 +58,6 @@ in
thunderbird thunderbird
prismlauncher prismlauncher
kicad kicad
calibre
neomutt neomutt
pass pass
isync isync