set stable version to 23.05

This commit is contained in:
Alexander Sosedkin 2023-06-18 10:31:47 +02:00
parent 064e1b280e
commit f636824b08
20 changed files with 46 additions and 43 deletions

View file

@ -2,15 +2,15 @@
description = "Minimal example of Nix-on-Droid system config with home-manager.";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.05";
home-manager = {
url = "github:nix-community/home-manager/release-22.11";
url = "github:nix-community/home-manager/release-23.05";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-on-droid = {
url = "github:t184256/nix-on-droid/release-22.11";
url = "github:t184256/nix-on-droid/release-23.05";
inputs.nixpkgs.follows = "nixpkgs";
inputs.home-manager.follows = "home-manager";
};

View file

@ -28,7 +28,7 @@
environment.etcBackupExtension = ".bak";
# Read the changelog before changing this value
system.stateVersion = "22.11";
system.stateVersion = "23.05";
# Set up nix for flakes
nix.extraOptions = ''
@ -47,7 +47,7 @@
{ config, lib, pkgs, ... }:
{
# Read the changelog before changing this value
home.stateVersion = "22.11";
home.stateVersion = "23.05";
# insert home-manager config
};