mirror of
https://github.com/aviallon/nixos-lib.git
synced 2026-04-05 17:27:50 +00:00
[Desktop] fix OpenTabletDriver
This commit is contained in:
parent
ec1d52bc25
commit
da5a352496
2 changed files with 8 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, lib, myLib, ... }:
|
{ config, pkgs, lib, myLib, opentabletdriver, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.aviallon.desktop;
|
cfg = config.aviallon.desktop;
|
||||||
|
|
@ -125,6 +125,7 @@ in {
|
||||||
|
|
||||||
hardware.acpilight.enable = true;
|
hardware.acpilight.enable = true;
|
||||||
hardware.opentabletdriver.enable = true;
|
hardware.opentabletdriver.enable = true;
|
||||||
|
hardware.opentabletdriver.package = opentabletdriver.packages.${pkgs.system}.opentabletdriver;
|
||||||
|
|
||||||
hardware.bluetooth = {
|
hardware.bluetooth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,11 @@
|
||||||
fps.url = "github:wamserma/flake-programs-sqlite";
|
fps.url = "github:wamserma/flake-programs-sqlite";
|
||||||
fps.inputs.nixpkgs.follows = "nixpkgs";
|
fps.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
flake-utils.url = "github:numtide/flake-utils";
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
|
|
||||||
|
opentabletdriver = {
|
||||||
|
url = "github:OpenTabletDriver/OpenTabletDriver";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
|
|
@ -22,6 +27,7 @@
|
||||||
, nixpkgs-unstable
|
, nixpkgs-unstable
|
||||||
, fps
|
, fps
|
||||||
, suyu
|
, suyu
|
||||||
|
, opentabletdriver
|
||||||
, ...
|
, ...
|
||||||
}: let
|
}: let
|
||||||
lib = nixpkgs.lib;
|
lib = nixpkgs.lib;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue