⌨ Keyboard config for Via/Qmk keyboard, added VLC

This commit is contained in:
Martin Berg Alstad 2025-01-04 17:43:21 +01:00
parent 8dd038fd6a
commit 211f311d0d
Signed by: martials
GPG Key ID: A3824877B269F2E2
2 changed files with 13 additions and 0 deletions

View File

@ -11,6 +11,7 @@
imports = [ imports = [
./gnome ./gnome
./hardware-configuration.nix ./hardware-configuration.nix
./keyboard.nix
./terminal ./terminal
./hyprland ./hyprland
./audio.nix ./audio.nix
@ -71,6 +72,7 @@
discord discord
nix-prefetch-github # Cmd to get rev and hash from GitHub nix-prefetch-github # Cmd to get rev and hash from GitHub
gimp gimp
vlc
]; ];
nix.settings.experimental-features = [ nix.settings.experimental-features = [

11
keyboard.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
via
];
hardware.keyboard.qmk.enable = true;
services.udev.packages = with pkgs; [ via ];
}