added kodi
This commit is contained in:
parent
70cc2587aa
commit
fd2e474229
@ -50,7 +50,15 @@
|
||||
|
||||
home-manager = {users = {"k" = import ./home.nix;};};
|
||||
|
||||
environment.systemPackages = with pkgs; [microcodeIntel];
|
||||
environment.systemPackages = with pkgs; [
|
||||
microcodeIntel
|
||||
firefox
|
||||
(pkgs.kodi.withPackages (kodiPkgs:
|
||||
with kodiPkgs; [
|
||||
jellyfin
|
||||
youtube
|
||||
]))
|
||||
];
|
||||
|
||||
hardware.bluetooth.enable = true;
|
||||
hardware.bluetooth.powerOnBoot = true;
|
||||
|
||||
@ -3,10 +3,12 @@
|
||||
lib,
|
||||
...
|
||||
}: {
|
||||
networking.firewall = {
|
||||
networking = {
|
||||
firewall = {
|
||||
enable = true;
|
||||
allowedTCPPorts = [80 443 22];
|
||||
allowedUDPPorts = [];
|
||||
allowedTCPPorts = [80 443 22 25565 26615 8080];
|
||||
allowedUDPPorts = [26615 8080 1900];
|
||||
};
|
||||
};
|
||||
|
||||
security.acme = {
|
||||
@ -35,6 +37,11 @@
|
||||
enable = true;
|
||||
allowed-origins = ["https://pit.dhilton.xyz"];
|
||||
};
|
||||
|
||||
pulseaudio = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
nix-serve = {
|
||||
enable = true;
|
||||
secretKeyFile = "/var/cache-priv-key.pem";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user