move qmk, bump
This commit is contained in:
parent
06b9d1dfd3
commit
ab36a87061
2 changed files with 12 additions and 12 deletions
20
clients/quadraticpc/qmk.nix
Normal file
20
clients/quadraticpc/qmk.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
hardware.keyboard.qmk.enable = true;
|
||||
environment.systemPackages = [
|
||||
(pkgs.qmk.overrideAttrs (oldAttrs: {
|
||||
propagatedBuildInputs = (oldAttrs.propagatedBuildInputs or [ ]) ++ [ pkgs.python3.pkgs.appdirs ];
|
||||
}))
|
||||
];
|
||||
|
||||
users.users.quadradical.maid.file.xdg_config."qmk/qmk.ini".source = toString (
|
||||
(pkgs.formats.ini { }).generate "qmk.ini" {
|
||||
user = {
|
||||
qmk_home = "/home/quadradical/Documents/Code/qmk_firmware";
|
||||
overlay_dir = "/home/quadradical/Documents/Code/qmk_userspace";
|
||||
keyboard = "nuphy/air75_v2/ansi";
|
||||
keymap = "via";
|
||||
};
|
||||
}
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue