refactor: notebook configration
This commit is contained in:
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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user