Compare commits

..

2 Commits

Author SHA1 Message Date
74d939d062 [eww] Fix launcher for bnet 2025-03-31 14:05:11 -07:00
47cf2e3d71 [qmk] Adds QMK support 2025-03-31 14:05:11 -07:00
3 changed files with 17 additions and 1 deletions

View File

@@ -53,7 +53,7 @@
:space-evenly false
(button
;; :onclick "env LUTRIS_SKIP_INIT=1 lutris lutris:rungameid/1"
:onclick "notify-send 'Launching Lutris' && env LUTRIS_SKIP_INIT=1 lutris lutris:rungameid/1"
:onclick "/home/drew/.local/bin/wow.sh >/tmp/wow.log 2>&1"
(image
:class "launcher-icon"
:image-width 48

View File

@@ -9,6 +9,10 @@
}:
{
imports = [
./qmk.nix
];
networking.hostName = "drew-desktop"; # Define your hostname.
# Configure network proxy if necessary

View File

@@ -0,0 +1,12 @@
# See https://nixos.wiki/wiki/Qmk
{ pkgs, ... }:
{
# Allows access to keyboard configuration as a non-root user.
hardware.keyboard.qmk.enable = true;
# Add VIA to udev for firmwares that support it.
environment.systemPackages = with pkgs; [
via
];
services.udev.packages = [ pkgs.via ];
}