From 8f04a72366e9c7de1f8ab70c0c156ebf072faa49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 11 Dec 2023 23:42:26 +0100 Subject: [PATCH] upgrade to 23.11 --- flake.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.nix b/flake.nix index 477d535..35a3bed 100644 --- a/flake.nix +++ b/flake.nix @@ -3,9 +3,9 @@ inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small"; - inputs.nixos-23_05.url = "github:NixOS/nixpkgs/nixos-23.05"; + inputs.nixos-stable.url = "github:NixOS/nixpkgs/nixos-23.11"; - outputs = { nixpkgs, nixos-23_05, self, ... }: + outputs = { nixpkgs, nixos-stable, self, ... }: let srvos = self; inherit (nixpkgs) lib; @@ -39,12 +39,12 @@ system = pkgs.system; })) // (lib.optionalAttrs (pkgs.system == "x86_64-linux") (import ./dev/checks.nix { inherit srvos; - pkgs = import nixos-23_05 { + pkgs = import nixos-stable { inherit (pkgs) system; config = { inherit permittedInsecurePackages; }; }; - inherit (nixos-23_05) lib; - prefix = "nixos-23_05"; + inherit (nixos-stable) lib; + prefix = "nixos-stable"; system = pkgs.system; })));