diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-30 22:41:00 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-12-30 22:41:00 +0100 |
commit | 07229574e2e0feef3e4984025d9b2b9a6776f51d (patch) | |
tree | 4e94a2b47fa4f38f98959efae6eb250a4207701b /flake.nix | |
parent | build(treewide): Update (diff) | |
download | nixos-config-07229574e2e0feef3e4984025d9b2b9a6776f51d.zip |
feat(modules/legacy/river): Add mapping to start `qmk-unicode-type`
That program communicates with my keyboard and sets a Unicode character.
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index a8be86e4..d08eb34a 100644 --- a/flake.nix +++ b/flake.nix @@ -246,6 +246,15 @@ flake-compat.follows = "flake-compat"; }; }; + qmk_firmware = { + url = "git+https://git.foss-syndicate.org/bpeetz/qmk_layout.git?ref=prime"; + inputs = { + nixpkgs.follows = "nixpkgs"; + treefmt-nix.follows = "treefmt-nix"; + systems.follows = "systems"; + flake-utils.follows = "flake-utils"; + }; + }; # external resources user_js = { @@ -286,6 +295,7 @@ # my binaries shell_library, river_init_lesser, + qmk_firmware, ... }: let system = "x86_64-linux"; @@ -337,6 +347,7 @@ # my binaries shell_library river_init_lesser + qmk_firmware ; }; in |