nixos-config/programs/desktop/default.nix

29 lines
464 B
Nix
Raw Normal View History

2024-11-09 07:40:38 +00:00
{config, pkgs, ...}: {
2024-11-08 13:26:54 +00:00
imports = [
./steam
];
2024-11-06 10:01:39 +00:00
home-manager.users.darkkirb.imports =
if config.isGraphical
then [
./home-manager.nix
]
else [];
2024-11-09 07:40:38 +00:00
environment.plasma6.excludePackages = with pkgs.kdePackages; [
pkgs.elisa
];
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
}