From 307591d1ef64e2053994185c4173b8391f6ef96f Mon Sep 17 00:00:00 2001 From: "quentin@aristote.fr" Date: Sun, 30 Nov 2025 21:00:04 +0100 Subject: nixos 25.05 -> 25.11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - tests: enable isNspawnContainer - searx: remove morty (deprecated) Flake lock file updates: • Updated input 'my-nixpkgs': 'github:qaristote/my-nixpkgs/c032f4c09c83feb933d520ccce80e70a1516ca35' (2025-11-21) → 'github:qaristote/my-nixpkgs/e6d25dc678fa289ba488907e3cd49f2f8c330680' (2025-11-30) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/1c8ba8d3f7634acac4a2094eef7c32ad9106532c' (2025-11-24) → 'github:NixOS/nixpkgs/d542db745310b6929708d9abea513f3ff19b1341' (2025-11-30) --- flake.nix | 70 +++++++++++++++++++++++++++++++++++---------------------------- 1 file changed, 39 insertions(+), 31 deletions(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index d553767..4f29a34 100644 --- a/flake.nix +++ b/flake.nix @@ -5,39 +5,47 @@ inputs.nixpkgs.follows = "/nixpkgs"; }; my-nixpkgs.url = "github:qaristote/my-nixpkgs"; - nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11"; }; - outputs = { - nixpkgs, - my-nixpkgs, - personal-webpage, - ... - }: { - nixosConfigurations = let - system = "x86_64-linux"; - commonModules = [ - my-nixpkgs.nixosModules.personal - ({...}: { - nixpkgs.overlays = [ - (self: _: {personal = {inherit (personal-webpage.packages."${self.system}") webpage;};}) - # TODO the order shouldn't matter, yet this overlay doesn't work - # if it comes first - my-nixpkgs.overlays.personal + outputs = + { + nixpkgs, + my-nixpkgs, + personal-webpage, + ... + }: + { + nixosConfigurations = + let + system = "x86_64-linux"; + commonModules = [ + my-nixpkgs.nixosModules.personal + ( + { ... }: + { + nixpkgs.overlays = [ + (self: _: { personal = { inherit (personal-webpage.packages."${self.system}") webpage; }; }) + # TODO the order shouldn't matter, yet this overlay doesn't work + # if it comes first + my-nixpkgs.overlays.personal + ]; + } + ) ]; - }) - ]; - in { - hermes = nixpkgs.lib.nixosSystem { - inherit system; - modules = - commonModules - ++ [./config ./config/hardware]; - }; - hermes-test = nixpkgs.lib.nixosSystem { - inherit system; - modules = commonModules ++ [./tests/configuration.nix]; - }; + in + { + hermes = nixpkgs.lib.nixosSystem { + inherit system; + modules = commonModules ++ [ + ./config + ./config/hardware + ]; + }; + hermes-test = nixpkgs.lib.nixosSystem { + inherit system; + modules = commonModules ++ [ ./tests/configuration.nix ]; + }; + }; }; - }; } -- cgit v1.2.3