Compare commits
2 Commits
458ad191bf
...
74d939d062
| Author | SHA1 | Date | |
|---|---|---|---|
| 74d939d062 | |||
| 47cf2e3d71 |
@@ -53,7 +53,7 @@
|
|||||||
:space-evenly false
|
:space-evenly false
|
||||||
(button
|
(button
|
||||||
;; :onclick "env LUTRIS_SKIP_INIT=1 lutris lutris:rungameid/1"
|
;; :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
|
(image
|
||||||
:class "launcher-icon"
|
:class "launcher-icon"
|
||||||
:image-width 48
|
:image-width 48
|
||||||
|
|||||||
@@ -9,6 +9,10 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
./qmk.nix
|
||||||
|
];
|
||||||
|
|
||||||
networking.hostName = "drew-desktop"; # Define your hostname.
|
networking.hostName = "drew-desktop"; # Define your hostname.
|
||||||
|
|
||||||
# Configure network proxy if necessary
|
# Configure network proxy if necessary
|
||||||
|
|||||||
12
system/hosts/drew-desktop/qmk.nix
Normal file
12
system/hosts/drew-desktop/qmk.nix
Normal 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 ];
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user