Skip to content

Commit

Permalink
Use newer nix in example
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoverbear committed Mar 31, 2023
1 parent 64a72d6 commit afe76f0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Let's assume for a moment we have a simple flake called `original` with a `nixos
# original/flake.nix
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.05";
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
};
outputs = { self, nixpkgs }: {
Expand All @@ -48,7 +48,7 @@ Let's assume for a moment we have a simple flake called `original` with a `nixos
documentation.man.enable = false;
boot.loader.grub.enable = false;
fileSystems."/".device = "/dev/null";
system.stateVersion = "22.05";
system.stateVersion = "22.11";
};
nixosConfigurations.teapot = nixpkgs.lib.nixosSystem {
Expand Down Expand Up @@ -79,7 +79,7 @@ Now, let's assume there exists some other flake, called `extension` that looks l
# extension/flake.nix
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.05";
nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11";
};
outputs = { self, nixpkgs }: {
Expand Down

0 comments on commit afe76f0

Please sign in to comment.