From 443997f66deaebe43770881db2811cf9e4a929e2 Mon Sep 17 00:00:00 2001 From: Romain Paquet Date: Wed, 12 Feb 2025 16:23:13 +0100 Subject: [PATCH] add thunderbird on haze --- hosts/haze/default.nix | 1 + hosts/haze/thunderbird.nix | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 hosts/haze/thunderbird.nix diff --git a/hosts/haze/default.nix b/hosts/haze/default.nix index dc1a273..5054bd3 100644 --- a/hosts/haze/default.nix +++ b/hosts/haze/default.nix @@ -9,6 +9,7 @@ inputs.impermanence.nixosModules.impermanence ./boot.nix ./disk.nix + ./thunderbird.nix ./hardware.nix ./network.nix ./sway.nix diff --git a/hosts/haze/thunderbird.nix b/hosts/haze/thunderbird.nix new file mode 100644 index 0000000..c856732 --- /dev/null +++ b/hosts/haze/thunderbird.nix @@ -0,0 +1,3 @@ +{ + programs.thunderbird.enable = true; +}