Files
dotfiles/hosts/neogaia/default.nix
alexion 25e12f79de build(deps): pin the stable overlay and stateVersion to 26.05
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 the project docs 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.
2026-07-19 07:57:21 -04:00

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