nixos-config/programs/desktop/default.nix

35 lines
556 B
Nix
Raw Normal View History

2024-11-09 14:02:26 +00:00
{ config, pkgs, ... }:
{
2024-11-08 13:26:54 +00:00
imports = [
./steam
2024-11-18 10:04:29 +00:00
./kodi/system-config.nix
2024-11-19 09:37:01 +00:00
./pipewire.nix
./firefox/system.nix
2024-11-08 13:26:54 +00:00
];
2024-11-06 10:01:39 +00:00
home-manager.users.darkkirb.imports =
2024-11-09 14:02:26 +00:00
if config.isGraphical then
[
./home-manager.nix
]
else
[ ];
2024-11-09 07:40:38 +00:00
environment.plasma6.excludePackages = with pkgs.kdePackages; [
2024-11-10 07:02:53 +00:00
elisa
kate
2024-11-09 07:40:38 +00:00
];
2024-11-09 07:45:58 +00:00
networking.firewall.allowedTCPPortRanges = [
{
from = 1714;
to = 1764;
}
];
networking.firewall.allowedUDPPortRanges = [
{
from = 1714;
to = 1764;
}
];
2024-11-06 09:50:59 +00:00
}