add miracast module
This commit is contained in:
parent
513942976e
commit
d1466bbba3
2 changed files with 25 additions and 1 deletions
23
modules/programs/miracast.nix
Normal file
23
modules/programs/miracast.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue