11 lines
198 B
Nix
11 lines
198 B
Nix
|
# SPDX-FileCopyrightText: 2023 Luke Granger-Brown <depot@lukegb.com>
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
{ pkgs, depot, lib, ... }:
|
||
|
{
|
||
|
config = {
|
||
|
services.kdeconnect.enable = true;
|
||
|
};
|
||
|
}
|