mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-11-22 22:53:07 +01:00
Added Logitech Device Support & testing wezterm out
This commit is contained in:
parent
d3b687b521
commit
f0611e6478
@ -10,7 +10,7 @@ in {
|
||||
swaynotificationcenter rofi-wayland imv transmission-gtk mpv
|
||||
gimp obs-studio blender-hip godot_4 rustup audacity
|
||||
font-awesome spotify swayidle neovide pavucontrol
|
||||
element-desktop swaylock
|
||||
element-desktop swaylock wezterm
|
||||
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
|
||||
# Import Scripts
|
||||
(import ./../scripts/emopicker9000.nix { inherit pkgs; })
|
||||
@ -25,4 +25,6 @@ in {
|
||||
(import ./../scripts/rofi-launcher.nix { inherit pkgs; })
|
||||
(import ./../scripts/screenshootin.nix { inherit pkgs; })
|
||||
];
|
||||
|
||||
programs.gh.enable = true;
|
||||
}
|
||||
|
@ -12,6 +12,7 @@
|
||||
./intel-amd.nix
|
||||
./intel-gpu.nix
|
||||
./intel-nvidia.nix
|
||||
./logitech.nix
|
||||
./neovim.nix
|
||||
./nfs.nix
|
||||
./ntp.nix
|
||||
|
7
config/system/logitech.nix
Normal file
7
config/system/logitech.nix
Normal 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;
|
||||
}
|
@ -38,5 +38,6 @@ in {
|
||||
flatpak = false;
|
||||
kdenlive = true;
|
||||
blender = true;
|
||||
logitech = true;
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user