This commit is contained in:
2026-08-24 11:36:06 +01:00
parent a3b49b8960
commit 34781f2102
+13
View File
@@ -0,0 +1,13 @@
{ modules, inputs, ... }:
{
flake-file.inputs = {
iptsd.url = "git+ssh://git@git.scug.io:/git@git.scug.io:nikkuss/iptsd-rs.git";
iptsd.inputs.nixpkgs.follows = "nixpkgs";
};
modules.surface-touchpad = {
nixos = {
imports = [ inputs.iptsd.nixosModules.default ];
config.services.iptsd-rs.enable = true;
};
};
}