Added Skype
This commit is contained in:
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