feat: upgrade to nixos-25.05

This commit is contained in:
Ryan Yin
2025-05-29 12:04:56 +08:00
parent 7a5587d14d
commit 938cf720fd
5 changed files with 38 additions and 46 deletions
+11 -14
View File
@@ -1,18 +1,18 @@
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
{
imports =
[
../../modules/system.nix
../../modules/i3.nix
config,
pkgs,
...
}: {
imports = [
../../modules/system.nix
../../modules/i3.nix
# Include the results of the hardware scan.
./hardware-configuration.nix
];
# Include the results of the hardware scan.
./hardware-configuration.nix
];
# Bootloader.
boot.loader = {
@@ -48,8 +48,5 @@
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "24.05"; # Did you read the comment?
system.stateVersion = "25.05"; # Did you read the comment?
}