set stable version to 22.11

This commit is contained in:
Tobias Happ 2022-12-01 22:12:40 +01:00 committed by Alexander Sosedkin
parent 7e8f1ad6e2
commit c70a1d9745
20 changed files with 50 additions and 39 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.05";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-22.11";
home-manager = {
url = "github:nix-community/home-manager/release-22.05";
url = "github:nix-community/home-manager/release-22.11";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-on-droid = {
url = "github:t184256/nix-on-droid/release-22.05";
url = "github:t184256/nix-on-droid/release-22.11";
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.05";
system.stateVersion = "22.11";
# Set up nix for flakes
nix.extraOptions = ''
@ -47,7 +47,7 @@
{ config, lib, pkgs, ... }:
{
# Read the changelog before changing this value
home.stateVersion = "22.05";
home.stateVersion = "22.11";
# insert home-manager config
};