From c897d6f9bc805411481112f8acb934a4acca7b3c Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Sat, 17 Jan 2026 16:20:04 +0100 Subject: [PATCH] update flake to 25.11 --- flake.lock | 8 ++++---- flake.nix | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/flake.lock b/flake.lock index 752db5b..b86659d 100644 --- a/flake.lock +++ b/flake.lock @@ -2,16 +2,16 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1754563854, - "narHash": "sha256-YzNTExe3kMY9lYs23mZR7jsVHe5TWnpwNrsPOpFs/b8=", + "lastModified": 1768323494, + "narHash": "sha256-yBXJLE6WCtrGo7LKiB6NOt6nisBEEkguC/lq/rP3zRQ=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "e728d7ae4bb6394bbd19eec52b7358526a44c414", + "rev": "2c3e5ec5df46d3aeee2a1da0bfedd74e21f4bf3a", "type": "github" }, "original": { "id": "nixpkgs", - "ref": "nixos-25.05", + "ref": "nixos-25.11", "type": "indirect" } }, diff --git a/flake.nix b/flake.nix index 9379539..3563331 100644 --- a/flake.nix +++ b/flake.nix @@ -1,7 +1,7 @@ { description = "mail-quota-warning package and service"; - inputs.nixpkgs.url = "nixpkgs/nixos-25.05"; + inputs.nixpkgs.url = "nixpkgs/nixos-25.11"; outputs = { self, nixpkgs }: let @@ -25,15 +25,15 @@ dependencies = with python3Packages; [ python - pyyaml - imaplib2 + pyyaml + imaplib2 ]; installPhase = '' install -Dm755 ${./mail-quota-warning.py} $out/bin/mail-quota-warning ''; - meta.mainProgram = "mail-quota-warning"; + meta.mainProgram = "mail-quota-warning"; }; };