26.05 is the latest stable NixOS release as of now (26.11 is still the in-development branch that nixos-unstable reports); the previous 25.05 pin was a release behind. - flake.nix / flake.lock: stable overlay tracks nixos-26.05. - neogaia system.stateVersion and the base home.stateVersion set to 26.05 (fresh install, so aligning to the current stable release). - Refresh the "latest stable release" references in CONTEXT.md, the spec, and the task file to match. Other inputs are rolling branches (nixos-unstable, nixpkgs-unstable, chaotic nyxpkgs-unstable) or master (home-manager, per spec), so they carry no version to bump.
27 lines
776 B
Nix
27 lines
776 B
Nix
{ ... }:
|
|
# neogaia — Dell XPS 13 9380 laptop.
|
|
#
|
|
# Minimum viable Host: enough to evaluate and build the system toplevel. The
|
|
# real disk layout (disko: LUKS + btrfs + zram), the CachyOS kernel, networking,
|
|
# and the terminal Modules arrive in later tasks; the placeholders below are
|
|
# replaced by disko in task 0002.
|
|
{
|
|
imports = [ ./hardware-configuration.nix ];
|
|
|
|
system.stateVersion = "26.05";
|
|
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
# Placeholder filesystems so the toplevel builds; superseded by the disko
|
|
# layout in task 0002.
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-label/nixos";
|
|
fsType = "ext4";
|
|
};
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/by-label/BOOT";
|
|
fsType = "vfat";
|
|
};
|
|
}
|