From 8c5cf876d9d62e09cc31f476237db9e73c43aca3 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Mon, 7 Oct 2024 21:32:23 +0200 Subject: [PATCH] feat: adds yubikey-touch-detector but its not working yet --- modules/home/default.nix | 1 + modules/home/security.nix | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 modules/home/security.nix diff --git a/modules/home/default.nix b/modules/home/default.nix index bfe9dc6..605c0e5 100644 --- a/modules/home/default.nix +++ b/modules/home/default.nix @@ -2,6 +2,7 @@ imports = [(import ./bat.nix)] # better cat command ++ [(import ./git.nix)] # version control + ++ [(import ./security.nix)] # yubikey-touch-detector for now ++ [(import ./gtk.nix)] # gtk theme ++ [(import ./hyprland)] # window manager ++ [(import ./kitty.nix)] # terminal diff --git a/modules/home/security.nix b/modules/home/security.nix new file mode 100644 index 0000000..7450388 --- /dev/null +++ b/modules/home/security.nix @@ -0,0 +1,6 @@ +{ ... }: +{ + # services = { + # yubikey-touch-detector.enable = true; + # }; +}