Files
nixos/hosts/modules/personal.nix
Alexander Wainwright 8ea4397b05 Add ledger support
2026-01-20 09:50:18 +10:00

10 lines
167 B
Nix

{ config, pkgs, inputs, ... }:
{
# Mullvad vpn
services.mullvad-vpn = {
enable = true;
package = pkgs.mullvad-vpn;
};
hardware.ledger.enable = true;
}