add miracast module

nixos
Moritz Böhme 2023-01-26 10:54:34 +01:00
parent 513942976e
commit d1466bbba3
2 changed files with 25 additions and 1 deletions

View File

@ -18,10 +18,12 @@
./gpg.nix ./gpg.nix
./helix.nix ./helix.nix
./hub.nix ./hub.nix
./hyprland
./kakoune.nix ./kakoune.nix
./kitty.nix ./kitty.nix
./ledger ./ledger
./logseq.nix ./logseq.nix
./miracast.nix
./python.nix ./python.nix
./rofi ./rofi
./spotify.nix ./spotify.nix
@ -32,6 +34,5 @@
./xmonad ./xmonad
./zathura.nix ./zathura.nix
./zsh.nix ./zsh.nix
./hyprland
]; ];
} }

View File

@ -0,0 +1,23 @@
{ config
, lib
, pkgs
, ...
}:
with lib;
let
cfg = config.my.programs.miracast;
in
{
options.my.programs.miracast.enable = mkEnableOption "miracast";
config = mkIf cfg.enable {
networking.firewall = {
allowedTCPPorts = [ 7236 7250 ];
allowedUDPPorts = [ 7236 5353 ];
};
users.users.moritz.packages = with pkgs; [
gnome-network-displays
];
};
}