set stable version to 23.11

This commit is contained in:
Alexander Sosedkin 2024-02-17 13:18:50 +01:00
parent 4b1a6ebcc7
commit be783dd251
24 changed files with 48 additions and 46 deletions

View file

@ -59,7 +59,6 @@ PROOT_ARGS=(
"-b" "/dev"
"-b" "/proc"
"-b" "/sys"
"--link2symlink"
)

View file

@ -2,7 +2,7 @@
description = "Nix-on-Droid configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-23.05";
nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
nix-on-droid.url = "<<FLAKE_URL>>";
nix-on-droid.inputs.nixpkgs.follows = "nixpkgs";
};

View file

@ -1,7 +1,7 @@
{ pkgs, config, ... }:
{
system.stateVersion = "23.05";
system.stateVersion = "23.11";
# no nixpkgs.overlays defined
environment.packages = with pkgs; [ zsh ];
@ -9,7 +9,7 @@
home-manager.config =
{ pkgs, ... }:
{
home.stateVersion = "23.05";
home.stateVersion = "23.11";
nixpkgs.overlays = config.nixpkgs.overlays;
home.packages = with pkgs; [ dash ];

View file

@ -2,8 +2,8 @@
description = "Nix-on-Droid configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-23.05";
home-manager.url = "github:nix-community/home-manager/release-23.05";
nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
home-manager.url = "github:nix-community/home-manager/release-23.11";
nix-on-droid.url = "<<FLAKE_URL>>";
nix-on-droid.inputs.nixpkgs.follows = "nixpkgs";
nix-on-droid.inputs.home-manager.follows = "home-manager";

View file

@ -1,7 +1,7 @@
{ pkgs, ... }:
{
system.stateVersion = "23.05";
system.stateVersion = "23.11";
networking.hosts."127.0.0.2" = [ "localhost" ];
}

View file

@ -1,7 +1,7 @@
{ pkgs, ... }:
{
system.stateVersion = "23.05";
system.stateVersion = "23.11";
networking = {
hosts."127.0.0.2" = [ "a" "b" ];

View file

@ -2,7 +2,7 @@
description = "Nix-on-Droid configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-23.05";
nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
nix-on-droid.url = "<<FLAKE_URL>>";
nix-on-droid.inputs.nixpkgs.follows = "nixpkgs";
};

View file

@ -21,7 +21,7 @@ teardown() {
[[ ! -e ~/.config/example ]]
# set up / build / activate the configuration
nix-channel --add https://github.com/nix-community/home-manager/archive/release-23.05.tar.gz home-manager
nix-channel --add https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz home-manager
nix-channel --update
cp "$ON_DEVICE_TESTS_DIR/config-h-m.nix" ~/.config/nixpkgs/nix-on-droid.nix
nix-on-droid switch

View file

@ -1,12 +1,12 @@
{ pkgs, config, ... }:
{
system.stateVersion = "23.05";
system.stateVersion = "23.11";
home-manager.config =
{ pkgs, lib, ... }:
{
home.stateVersion = "23.05";
home.stateVersion = "23.11";
nixpkgs = { inherit (config.nixpkgs) overlays; };
# example config

View file

@ -1,7 +1,7 @@
_:
{
system.stateVersion = "23.05";
system.stateVersion = "23.11";
terminal.colors = {
background = "#FFFFFF";
foreground = "#000000";