Added Skype
This commit is contained in:
@@ -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
15
modules/app/skype.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user