Added Logitech Device Support & testing wezterm out

This commit is contained in:
Tyler Kelley 2024-02-08 02:20:44 -06:00
parent d3b687b521
commit f0611e6478
4 changed files with 12 additions and 1 deletions

View File

@ -10,7 +10,7 @@ in {
swaynotificationcenter rofi-wayland imv transmission-gtk mpv swaynotificationcenter rofi-wayland imv transmission-gtk mpv
gimp obs-studio blender-hip godot_4 rustup audacity gimp obs-studio blender-hip godot_4 rustup audacity
font-awesome spotify swayidle neovide pavucontrol font-awesome spotify swayidle neovide pavucontrol
element-desktop swaylock element-desktop swaylock wezterm
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) (nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
# Import Scripts # Import Scripts
(import ./../scripts/emopicker9000.nix { inherit pkgs; }) (import ./../scripts/emopicker9000.nix { inherit pkgs; })
@ -25,4 +25,6 @@ in {
(import ./../scripts/rofi-launcher.nix { inherit pkgs; }) (import ./../scripts/rofi-launcher.nix { inherit pkgs; })
(import ./../scripts/screenshootin.nix { inherit pkgs; }) (import ./../scripts/screenshootin.nix { inherit pkgs; })
]; ];
programs.gh.enable = true;
} }

View File

@ -12,6 +12,7 @@
./intel-amd.nix ./intel-amd.nix
./intel-gpu.nix ./intel-gpu.nix
./intel-nvidia.nix ./intel-nvidia.nix
./logitech.nix
./neovim.nix ./neovim.nix
./nfs.nix ./nfs.nix
./ntp.nix ./ntp.nix

View File

@ -0,0 +1,7 @@
{ pkgs, config, lib, ... }:
let inherit (import ../../options.nix) logitech; in
lib.mkIf (logitech == true) {
hardware.logitech.wireless.enable = true;
hardware.logitech.wireless.enableGraphical = true;
}

View File

@ -38,5 +38,6 @@ in {
flatpak = false; flatpak = false;
kdenlive = true; kdenlive = true;
blender = true; blender = true;
logitech = true;
} }