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; + # }; +}