thudnerbird
This commit is contained in:
parent
2c71867071
commit
2317f427ae
2 changed files with 13 additions and 0 deletions
|
@ -11,5 +11,6 @@
|
|||
./gajim
|
||||
./pidgin
|
||||
./psiplus
|
||||
./thunderbird
|
||||
];
|
||||
}
|
||||
|
|
12
modules/desktop/chat/thunderbird.nix
Normal file
12
modules/desktop/chat/thunderbird.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ outputs, options, config, lib, pkgs, ... }:
|
||||
let cfg = config.modules.desktop.chat.thunderbird;
|
||||
in {
|
||||
options.modules.desktop.chat.thunderbird = {
|
||||
enable = lib.mkEnableOption false;
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
users.users.sako.packages = [ pkgs.thunderbird ];
|
||||
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue