fix: thunderbird config

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2024-11-21 09:02:23 +01:00
parent 1cb1cc62e3
commit 56d1cba1df
Signed by: lander
GPG key ID: 0142722B4B0C536F
2 changed files with 8 additions and 6 deletions

8
flake.lock generated
View file

@ -338,16 +338,16 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1724531977,
"narHash": "sha256-XROVLf9ti4rrNCFLr+DmXRZtPjCQTW4cYy59owTEmxk=",
"lastModified": 1731755305,
"narHash": "sha256-v5P3dk5JdiT+4x69ZaB18B8+Rcu3TIOrcdG4uEX7WZ8=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "2527da1ef492c495d5391f3bcf9c1dd9f4514e32",
"rev": "057f63b6dc1a2c67301286152eb5af20747a9cb4",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-24.05",
"ref": "nixos-24.11",
"repo": "nixpkgs",
"type": "github"
}

View file

@ -1,8 +1,10 @@
{...}: {
{pkgs, ...}: {
imports = [
./global
./features/workstation
];
programs.thunderbird.enable = true;
home.packages = with pkgs; [
thunderbird
];
}