add kdeconnect
This commit is contained in:
parent
c4bbf46dab
commit
4efc3d9af5
4 changed files with 28 additions and 1 deletions
|
@ -12,4 +12,17 @@
|
||||||
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
environment.plasma6.excludePackages = with pkgs.kdePackages; [
|
||||||
pkgs.elisa
|
pkgs.elisa
|
||||||
];
|
];
|
||||||
|
|
||||||
|
networking.firewall.allowedTCPPortRanges = [
|
||||||
|
{
|
||||||
|
from = 1714;
|
||||||
|
to = 1764;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
networking.firewall.allowedUDPPortRanges = [
|
||||||
|
{
|
||||||
|
from = 1714;
|
||||||
|
to = 1764;
|
||||||
|
}
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, ...}: {
|
{pkgs, nixos-config, ...}: {
|
||||||
imports = [
|
imports = [
|
||||||
./firefox
|
./firefox
|
||||||
./password-manager.nix
|
./password-manager.nix
|
||||||
|
@ -6,8 +6,10 @@
|
||||||
./games
|
./games
|
||||||
./ims.nix
|
./ims.nix
|
||||||
./audacious.nix
|
./audacious.nix
|
||||||
|
"${nixos-config}/services/desktop"
|
||||||
];
|
];
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
kdePackages.kontact
|
kdePackages.kontact
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
5
services/desktop/default.nix
Normal file
5
services/desktop/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{...}: {
|
||||||
|
imports = [
|
||||||
|
./kdeconnect.nix
|
||||||
|
];
|
||||||
|
}
|
7
services/desktop/kdeconnect.nix
Normal file
7
services/desktop/kdeconnect.nix
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
services.kdeconnect = {
|
||||||
|
enable = true;
|
||||||
|
indicator = true;
|
||||||
|
package = pkgs.kdePackages.kdeconnect-kde;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue