From 56d1cba1df2c60ed7a48f87c78dcbd9a85c1eaa0 Mon Sep 17 00:00:00 2001 From: Lander Van den Bulcke Date: Thu, 21 Nov 2024 09:02:23 +0100 Subject: [PATCH] fix: thunderbird config Signed-off-by: Lander Van den Bulcke --- flake.lock | 8 ++++---- home/lander/wodan.nix | 6 ++++-- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index d57eb91..67c1bf5 100644 --- a/flake.lock +++ b/flake.lock @@ -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" } diff --git a/home/lander/wodan.nix b/home/lander/wodan.nix index 553fd67..42491eb 100644 --- a/home/lander/wodan.nix +++ b/home/lander/wodan.nix @@ -1,8 +1,10 @@ -{...}: { +{pkgs, ...}: { imports = [ ./global ./features/workstation ]; - programs.thunderbird.enable = true; + home.packages = with pkgs; [ + thunderbird + ]; }