From ce7dba2e87b41ec335f19438bbdf6146df53b21b Mon Sep 17 00:00:00 2001 From: alex Date: Fri, 16 Jun 2023 19:14:12 -0400 Subject: [PATCH] pin nixpkgs to v23.05 --- flake.lock | 12 +++++++----- flake.nix | 7 +++++-- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index d1d831e..1ea0532 100644 --- a/flake.lock +++ b/flake.lock @@ -2,16 +2,18 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1686858960, - "narHash": "sha256-YO8CVbKQPOUZcpbNHVF2WWKrs+AByCbdggUYc6qAvzs=", + "lastModified": 1686921029, + "narHash": "sha256-J1bX9plPCFhTSh6E3TWn9XSxggBh/zDD4xigyaIQBy8=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "95c729c030b3011c5c89107ac9fa30f7249135fe", + "rev": "c7ff1b9b95620ce8728c0d7bd501c458e6da9e04", "type": "github" }, "original": { - "id": "nixpkgs", - "type": "indirect" + "owner": "NixOS", + "ref": "nixos-23.05", + "repo": "nixpkgs", + "type": "github" } }, "root": { diff --git a/flake.nix b/flake.nix index 2bf7eb0..0b9d7b9 100644 --- a/flake.nix +++ b/flake.nix @@ -1,9 +1,12 @@ { - description = "A very basic flake"; + description = "Alex's super mega awesome nixos config"; - outputs = { self, nixpkgs }: { + inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-23.05; + + outputs = { self, nixpkgs }@attrs: { nixosConfigurations.nixos76 = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + specialArgs = attrs; modules = [ ./configuration.nix ]; }; };