mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 11:36:07 +01:00
set stable version to 22.11
This commit is contained in:
parent
7e8f1ad6e2
commit
c70a1d9745
20 changed files with 50 additions and 39 deletions
|
|
@ -5,8 +5,8 @@
|
|||
with lib;
|
||||
|
||||
let
|
||||
defaultNixpkgsBranch = "nixos-22.05";
|
||||
defaultNixOnDroidBranch = "release-22.05";
|
||||
defaultNixpkgsBranch = "nixos-22.11";
|
||||
defaultNixOnDroidBranch = "release-22.11";
|
||||
|
||||
defaultNixpkgsChannel = "https://nixos.org/channels/${defaultNixpkgsBranch}";
|
||||
defaultNixOnDroidChannel = "https://github.com/t184256/nix-on-droid/archive/${defaultNixOnDroidBranch}.tar.gz";
|
||||
|
|
|
|||
|
|
@ -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 = ''
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
#time.timeZone = "Europe/Berlin";
|
||||
|
||||
# After installing home-manager channel like
|
||||
# nix-channel --add https://github.com/rycee/home-manager/archive/release-22.05.tar.gz home-manager
|
||||
# nix-channel --add https://github.com/rycee/home-manager/archive/release-22.11.tar.gz home-manager
|
||||
# nix-channel --update
|
||||
# you can configure home-manager in here like
|
||||
#home-manager = {
|
||||
|
|
@ -49,7 +49,7 @@
|
|||
# { config, lib, pkgs, ... }:
|
||||
# {
|
||||
# # Read the changelog before changing this value
|
||||
# home.stateVersion = "22.05";
|
||||
# home.stateVersion = "22.11";
|
||||
#
|
||||
# # insert home-manager config
|
||||
# };
|
||||
|
|
|
|||
|
|
@ -11,7 +11,16 @@ with lib;
|
|||
options = {
|
||||
|
||||
system.stateVersion = mkOption {
|
||||
type = types.enum [ "19.09" "20.03" "20.09" "21.05" "21.11" "22.05" ];
|
||||
type = types.enum [
|
||||
"19.09"
|
||||
"20.03"
|
||||
"20.09"
|
||||
"21.05"
|
||||
"21.11"
|
||||
"22.05"
|
||||
"22.11"
|
||||
"23.05"
|
||||
];
|
||||
description = ''
|
||||
It is occasionally necessary for Nix-on-Droid to change
|
||||
configuration defaults in a way that is incompatible with
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue