blob: e7c951438a0feba8ccb9ce02d2adf5489ee20190 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ pkgs, ... }:
{
imports = [
../gui/default.nix
../gui/networkmanager.nix
../gui/stalonetray.nix
];
custom.hidpi = false;
services.kdeconnect = {
enable = true;
};
}
|