Update base and artiq and fix graphics on new NUCs #5

Merged
sb10q merged 1 commits from esavkin/defenestrate:update-release-8 into master 2024-07-17 17:16:42 +08:00
2 changed files with 4 additions and 3 deletions
Showing only changes of commit 7c747b510c - Show all commits

View File

@ -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?
}

View File

@ -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";