From 7c747b510c2cf6fd140c08d59a7a6f414c300477 Mon Sep 17 00:00:00 2001 From: Egor Savkin Date: Wed, 17 Jul 2024 17:02:54 +0800 Subject: [PATCH] Update base and artiq and fix graphics on new NUCs Signed-off-by: Egor Savkin --- final/configuration.nix | 3 ++- final/flake.nix | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/final/configuration.nix b/final/configuration.nix index 1ace9a4..c522199 100644 --- a/final/configuration.nix +++ b/final/configuration.nix @@ -10,6 +10,7 @@ boot.loader.efi.canTouchEfiVariables = true; boot.loader.systemd-boot.memtest86.enable = true; boot.kernelParams = ["intel_idle.max_cstate=1"]; + boot.kernelPackages = pkgs.linuxPackages_latest; hardware.cpu.intel.updateMicrocode = true; networking.hostName = "artiq"; @@ -123,5 +124,5 @@ # compatible, in order to avoid breaking some software such as database # servers. You should change this only after NixOS release notes say you # should. - system.stateVersion = "22.05"; # Did you read the comment? + system.stateVersion = "24.05"; # Did you read the comment? } diff --git a/final/flake.nix b/final/flake.nix index 76e52da..47aa9ab 100644 --- a/final/flake.nix +++ b/final/flake.nix @@ -1,6 +1,6 @@ { - inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-23.05; - inputs.artiq.url = git+https://github.com/m-labs/artiq.git?ref=release-7; + inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-24.05; + inputs.artiq.url = git+https://github.com/m-labs/artiq.git?ref=release-8; outputs = { self, nixpkgs, artiq }: { nixosConfigurations.artiq = nixpkgs.lib.nixosSystem { system = "x86_64-linux";