diff options
-rw-r--r-- | marvin.nix | 1 | ||||
-rw-r--r-- | modules/hardware/trezor.nix | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/marvin.nix b/marvin.nix index 9c7ba8c..df798d4 100644 --- a/marvin.nix +++ b/marvin.nix @@ -17,6 +17,7 @@ ./modules/hardware/nitrokey.nix ./modules/hardware/systemd-boot.nix ./modules/hardware/trackball.nix + ./modules/hardware/trezor.nix ./modules/machines/x250.nix ./modules/programs/accounting.nix ./modules/programs/dotfiles.nix diff --git a/modules/hardware/trezor.nix b/modules/hardware/trezor.nix new file mode 100644 index 0000000..ad938e9 --- /dev/null +++ b/modules/hardware/trezor.nix @@ -0,0 +1,4 @@ +{ config, pkgs, ... }: + +{ services.trezord.enable = true; +} |