diff --git a/configuration.nix b/configuration.nix index 16ce630..24bafeb 100644 --- a/configuration.nix +++ b/configuration.nix @@ -11,6 +11,7 @@ imports = [ ./gnome ./hardware-configuration.nix + ./keyboard.nix ./terminal ./hyprland ./audio.nix @@ -71,6 +72,7 @@ discord nix-prefetch-github # Cmd to get rev and hash from GitHub gimp + vlc ]; nix.settings.experimental-features = [ diff --git a/keyboard.nix b/keyboard.nix new file mode 100644 index 0000000..8840a94 --- /dev/null +++ b/keyboard.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + via + ]; + + hardware.keyboard.qmk.enable = true; + + services.udev.packages = with pkgs; [ via ]; +}