feat: bump nixos's version to 23.11

This commit is contained in:
Ryan Yin
2023-12-05 10:39:10 +08:00
parent 489a6a29b3
commit 96e37a669d
18 changed files with 38 additions and 38 deletions

View File

@@ -78,7 +78,7 @@ Note that the copied template cannot be used directly. You need to modify it to
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
# home-manager, used for managing user configuration
home-manager = {
url = "github:nix-community/home-manager/release-23.05";
url = "github:nix-community/home-manager/release-23.11";
# The `follows` keyword in inputs is used for inheritance.
# Here, `inputs.nixpkgs` of home-manager is kept consistent with
# the `inputs.nixpkgs` of the current flake,
@@ -193,8 +193,8 @@ First, we need to add Helix as an input in `flake.nix`:
inputs = {
# ...
# Helix editor, using version 23.05
helix.url = "github:helix-editor/helix/23.05";
# Helix editor, version - 23.10
helix.url = "github:helix-editor/helix/23.10";
};
outputs = inputs@{ self, nixpkgs, ... }: {