refactor: notebook configration
This commit is contained in:
parent
0df4a4c1ec
commit
d4438c8585
37 changed files with 212 additions and 418 deletions
23
hosts/nb/modules/desktop/thunderbird.nix
Normal file
23
hosts/nb/modules/desktop/thunderbird.nix
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
|
||||
{ pkgs, ... }:
|
||||
let
|
||||
thunderbirdWorkDesktopItem = pkgs.makeDesktopItem {
|
||||
name = "thunderbird-work";
|
||||
desktopName = "Thunderbird Work";
|
||||
icon = "thunderbird";
|
||||
exec = "thunderbird -p work";
|
||||
};
|
||||
thunderbirdCloonarDesktopItem = pkgs.makeDesktopItem {
|
||||
name = "thunderbird-cloonar";
|
||||
desktopName = "Thunderbird Cloonar";
|
||||
icon = "thunderbird";
|
||||
exec = "thunderbird -p cloonar";
|
||||
};
|
||||
in
|
||||
{
|
||||
environment.systemPackages = [
|
||||
pkgs.thunderbird
|
||||
thunderbirdWorkDesktopItem
|
||||
thunderbirdCloonarDesktopItem
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue