Compare commits
No commits in common. "8c7713c8bc357a189a46dcde0b2f32ae7de6ac28" and "8043192d6bc9145d81c9a09d8573012b4014175a" have entirely different histories.
8c7713c8bc
...
8043192d6b
6
modules/nix/ctf/default.nix
Normal file
6
modules/nix/ctf/default.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./ghidra.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
20
modules/nix/ctf/ghidra.nix
Normal file
20
modules/nix/ctf/ghidra.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@ -5,8 +5,10 @@
|
|||||||
./base-cli
|
./base-cli
|
||||||
./browser
|
./browser
|
||||||
./containers
|
./containers
|
||||||
|
./ctf
|
||||||
./de
|
./de
|
||||||
./displaymanager
|
./displaymanager
|
||||||
|
./ebook
|
||||||
./flatpak
|
./flatpak
|
||||||
./games
|
./games
|
||||||
./groups
|
./groups
|
||||||
|
|||||||
20
modules/nix/ebook/calibre.nix
Normal file
20
modules/nix/ebook/calibre.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
6
modules/nix/ebook/default.nix
Normal file
6
modules/nix/ebook/default.nix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./calibre.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
@ -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
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user