diff --git a/flake.lock b/flake.lock index 84d9834..66d3f3f 100644 --- a/flake.lock +++ b/flake.lock @@ -1156,16 +1156,16 @@ }, "nixpkgs_6": { "locked": { - "lastModified": 1750134718, - "narHash": "sha256-v263g4GbxXv87hMXMCpjkIxd/viIF7p3JpJrwgKdNiI=", + "lastModified": 1750523110, + "narHash": "sha256-6rpunQamYOQcM1wWUgQ9uZwAm/6hji4qT7klW/1wY+w=", "owner": "nixos", "repo": "nixpkgs", - "rev": "9e83b64f727c88a7711a2c463a7b16eedb69a84c", + "rev": "47a0645979bd642dcd860d332963b32587ede0f3", "type": "github" }, "original": { "owner": "nixos", - "ref": "nixos-unstable", + "ref": "master", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 3b27cd9..cc831ea 100644 --- a/flake.nix +++ b/flake.nix @@ -3,7 +3,7 @@ inputs = { nixos-hardware.url = "github:NixOS/nixos-hardware"; - nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; + nixpkgs.url = "github:nixos/nixpkgs/master"; nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-25.05"; diff --git a/hosts/eddie/configuration.nix b/hosts/eddie/configuration.nix index 9904b6c..8dea1f8 100644 --- a/hosts/eddie/configuration.nix +++ b/hosts/eddie/configuration.nix @@ -58,7 +58,7 @@ (final: prev: { wineWowPackages.yabridge = prev.wineWowPackages.yabridge.overrideAttrs (old: { - patches = [ ../../patches/wine-6006.patch ]; + patches = [ ../../patches/wine-6006.patch ] ++ old.patches; waylandSupport = true; fontconfigSupport = true; vulkanSupport = true; diff --git a/modules/home/email.nix b/modules/home/email.nix index 35b39be..2e7348a 100644 --- a/modules/home/email.nix +++ b/modules/home/email.nix @@ -1,4 +1,4 @@ -{ pkgs-local, pkgs, ... }: +{ pkgs-local, pkgs-stable, pkgs, ... }: let pwdcmd = "${pkgs-local.rbw-latest}/bin/rbw"; in @@ -65,6 +65,7 @@ in msmtp.enable = true; thunderbird = { enable = true; + package = pkgs-stable.thunderbird; profiles.emenel = { isDefault = true; };