dotfiles/nixos/systems/recovery-usb.nix
Magic_RB a38cad8913
Add more GPG related things to recovery USB
Signed-off-by: Magic_RB <magic_rb@redalder.org>
2023-04-03 17:45:43 +02:00

54 lines
1.1 KiB
Nix

# SPDX-FileCopyrightText: 2022 Richard Brežák <richard@brezak.sk>
#
# SPDX-License-Identifier: LGPL-3.0-or-later
{
system = "x86_64-linux";
name = "recovery-usb";
module = {
pkgs,
inputs,
roots,
...
}: {
imports = [
(roots.nixos + "/modules")
inputs.home-manager.nixosModules.home-manager
"${inputs.nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
];
home-manager.users."main" = {...}: {
imports = [(roots.home-manager + "/modules")];
magic_rb = {
programs = {
bash.enable = true;
ssh.enable = true;
gpg.enable = true;
gpg.pinentryFlavor = "curses";
};
};
home.packages = with pkgs; [
openssl
pcsclite
paperkey
monkeysphere
ssss
xxd
usbutils
pciutils
];
home.stateVersion = "20.09";
};
# Enable PCSCD for smart card stuff
services.pcscd.enable = true;
magic_rb = {
hardware.recoveryUsb = true;
flakes.enable = true;
};
};
}