Skip to content

Commit

Permalink
Merge pull request #7 from tcarrio/chore/upgrade-nixpkgs-23.11
Browse files Browse the repository at this point in the history
chore: upgrade nixpkgs to 23.11
  • Loading branch information
tcarrio authored Dec 3, 2023
2 parents 2538eb3 + 1ad3491 commit 347964f
Show file tree
Hide file tree
Showing 12 changed files with 47 additions and 46 deletions.
4 changes: 2 additions & 2 deletions android/pixel6a/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
time.timeZone = "America/Detroit";

# After installing home-manager channel like
# nix-channel --add https://github.com/rycee/home-manager/archive/release-23.05.tar.gz home-manager
# nix-channel --add https://github.com/rycee/home-manager/archive/release-23.11.tar.gz home-manager
# nix-channel --update
# you can configure home-manager in here like
#home-manager = {
Expand All @@ -50,7 +50,7 @@
# { config, lib, pkgs, ... }:
# {
# # Read the changelog before changing this value
# home.stateVersion = "23.05";
# home.stateVersion = "23.11";
#
# # insert home-manager config
# };
Expand Down
2 changes: 1 addition & 1 deletion examples/dns-rpi.nix
Original file line number Diff line number Diff line change
Expand Up @@ -227,5 +227,5 @@
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.05"; # Did you read the comment?
system.stateVersion = "23.11"; # Did you read the comment?
}
58 changes: 29 additions & 29 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
description = "tcarrio's NixOS and Home Manager Configuration";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05";
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.11";
# You can access packages and modules from different nixpkgs revs at the
# same time. See 'unstable-packages' overlay in 'overlays/default.nix'.
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
Expand All @@ -13,7 +13,7 @@
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";

home-manager.url = "github:nix-community/home-manager/release-23.05";
home-manager.url = "github:nix-community/home-manager/release-23.11";
home-manager.inputs.nixpkgs.follows = "nixpkgs";

nix-doom-emacs.url = "github:nix-community/nix-doom-emacs";
Expand All @@ -30,7 +30,7 @@
devshells.url = "github:tcarrio/devshells";
devshells.inputs.nixpkgs.follows = "nixpkgs-unstable";

# Android support with nix-on-droid
# Android support with nix-on-droid. Currently not updated for 23.11
nix-on-droid.url = "github:nix-community/nix-on-droid/release-23.05";
nix-on-droid.inputs.nixpkgs.follows = "nixpkgs";

Expand Down Expand Up @@ -68,9 +68,10 @@
, ...
} @ inputs:
let
inherit (self) outputs;
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
stateVersion = "23.05";
stateVersion = "23.11";

inherit (self) outputs;
libx = import ./lib { inherit self inputs outputs stateVersion; };
in
{
Expand Down
4 changes: 2 additions & 2 deletions home-manager/_mixins/console/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
enable = true;
};
};
exa = {
eza = {
enable = true;
enableAliases = true;
icons = true;
Expand All @@ -133,7 +133,7 @@
less = "bat --paging=always";
more = "bat --paging=always";
top = "btm --basic --tree --hide_table_gap --dot_marker --mem_as_value";
tree = "exa --tree";
tree = "eza --tree";
};
functions = {
shell = ''
Expand Down
2 changes: 1 addition & 1 deletion nixos/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
hinting = {
autohint = false;
enable = true;
style = "hintslight";
style = "slight";
};
subpixel = {
rgba = "rgb";
Expand Down
2 changes: 1 addition & 1 deletion nixos/server/pxe-server/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -138,5 +138,5 @@ in
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "23.05"; # Did you read the comment?
system.stateVersion = "23.11"; # Did you read the comment?
}
2 changes: 1 addition & 1 deletion sdcard/rpi2.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
];
};

system.stateVersion = "23.05";
system.stateVersion = "23.11";
}
2 changes: 1 addition & 1 deletion shells/code-format/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "Nix shell for code-format tools";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-23.05";
nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
flake-utils.url = "github:numtide/flake-utils";
};

Expand Down
2 changes: 1 addition & 1 deletion shells/file-sync/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "Nix shell for file sync tools";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-23.05";
nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
flake-utils.url = "github:numtide/flake-utils";
};

Expand Down
2 changes: 1 addition & 1 deletion shells/gpu/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "Nix shell for GPU tools";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-23.05";
nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
flake-utils.url = "github:numtide/flake-utils";
};

Expand Down
2 changes: 1 addition & 1 deletion shells/network/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "Nix shell for network tools";

inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-23.05";
nixpkgs.url = "github:NixOS/nixpkgs/release-23.11";
flake-utils.url = "github:numtide/flake-utils";
};

Expand Down

0 comments on commit 347964f

Please sign in to comment.