Added Skype

This commit is contained in:
marc
2024-01-08 19:25:35 +01:00
parent fffa64bc44
commit d660b0fb36
2 changed files with 16 additions and 0 deletions

View File

@@ -76,6 +76,7 @@ in
# - Other apps -------------------------------
app.spotify.enable = true;
app.skype.enable = true;
# app.netflix.enable = true;
# - Gaming -----------------------------------

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

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