refactor: notebook configration

This commit is contained in:
Dominik Polakovics Polakovics 2025-06-02 01:04:43 +02:00
parent 0df4a4c1ec
commit d4438c8585
37 changed files with 212 additions and 418 deletions

View file

@ -1,23 +0,0 @@
{ 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
];
}