nix-git/modules/veracrypt.nix
2023-11-08 11:12:45 +01:00

20 lines
602 B
Nix

{ config, pkgs, lib, ... }:
{
# Looks as if TrueCrypt is unfree software
# https://github.com/NixOS/nixpkgs/blob/5d017a8822e0907fb96f7700a319f9fe2434de02/pkgs/applications/misc/veracrypt/default.nix#L59
# Allow installation of unfree software Veracrypt.
# Alternatively, run Veracrypt with
# NIXPKGS_ALLOW_UNFREE=1 nix-shell -p veracrypt
# https://nixos.wiki/wiki/Unfree_Software
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"veracrypt"
];
users.users.yoda = {
packages = with pkgs; [
veracrypt # Encrypted filesystem
];
};
}