Added netflix app

This commit is contained in:
marc
2023-11-21 13:52:33 +01:00
parent 596736b542
commit 0d63549504
2 changed files with 16 additions and 0 deletions

15
modules/app/netflix.nix Normal file
View File

@@ -0,0 +1,15 @@
{ config, lib, pkgs, ... }:
let
cfg = config.samfelag.modules.app.netflix;
in
{
options.samfelag.modules.app.netflix = {
enable = lib.mkEnableOption "netflix";
};
config = lib.mkIf cfg.enable {
hm.home.packages = with pkgs; [
netflix
];
};
}