14 lines
339 B
Nix
14 lines
339 B
Nix
{ modules, inputs, ... }:
|
|
{
|
|
flake-file.inputs = {
|
|
iptsd.url = "git+ssh://git@git.scug.io:/nikkuss/iptsd-rs.git?ref=main";
|
|
iptsd.inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
modules.surface-touchpad = {
|
|
nixos = {
|
|
imports = [ inputs.iptsd.nixosModules.default ];
|
|
config.services.iptsd-rs.enable = true;
|
|
};
|
|
};
|
|
}
|