nixos-config/programs/desktop/default.nix

28 lines
464 B
Nix

{config, pkgs, ...}: {
imports = [
./steam
];
home-manager.users.darkkirb.imports =
if config.isGraphical
then [
./home-manager.nix
]
else [];
environment.plasma6.excludePackages = with pkgs.kdePackages; [
pkgs.elisa
];
networking.firewall.allowedTCPPortRanges = [
{
from = 1714;
to = 1764;
}
];
networking.firewall.allowedUDPPortRanges = [
{
from = 1714;
to = 1764;
}
];
}