From 70fdcfe1ff4fe51899d29c68820b14292570263e Mon Sep 17 00:00:00 2001 From: mehbark Date: Mon, 4 Sep 2023 07:45:29 -0400 Subject: [PATCH] i want to punch my monitor --- flake.lock | 15 ++++++++------- flake.nix | 6 +++--- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/flake.lock b/flake.lock index b4a4b17..bff9bbf 100644 --- a/flake.lock +++ b/flake.lock @@ -25,15 +25,16 @@ ] }, "locked": { - "lastModified": 1693713564, - "narHash": "sha256-00w2uwb4O6Y1e2W5LG5UFyl1ZN3KFG7aoRdYEvT/BqA=", + "lastModified": 1693208669, + "narHash": "sha256-hHFaaUsZ860wvppPeiu7nJn/nXZjJfnqAQEu9SPFE9I=", "owner": "nix-community", "repo": "home-manager", - "rev": "8e49b883890ccb52c059abb152b00a416342ec1c", + "rev": "5bac4a1c06cd77cf8fc35a658ccb035a6c50cd2c", "type": "github" }, "original": { "owner": "nix-community", + "ref": "release-23.05", "repo": "home-manager", "type": "github" } @@ -139,16 +140,16 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1693714546, - "narHash": "sha256-3EMJZeGSZT6pD1eNwI/6Yc0R4rxklNvJ2SDFcsCnjpM=", + "lastModified": 1685566663, + "narHash": "sha256-btHN1czJ6rzteeCuE/PNrdssqYD2nIA4w48miQAFloM=", "owner": "nixos", "repo": "nixpkgs", - "rev": "d816b5ab44187a2dd84806630ce77a733724f95f", + "rev": "4ecab3273592f27479a583fb6d975d4aba3486fe", "type": "github" }, "original": { "owner": "nixos", - "ref": "nixpkgs-unstable", + "ref": "23.05", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 631fe2e..4d2d198 100644 --- a/flake.nix +++ b/flake.nix @@ -2,9 +2,9 @@ description = "mehbark's NixOS configuration"; inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; + nixpkgs.url = "github:nixos/nixpkgs/23.05"; - home-manager.url = "github:nix-community/home-manager"; + home-manager.url = "github:nix-community/home-manager/release-23.05"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; flake-utils.url = "github:numtide/flake-utils"; @@ -35,7 +35,7 @@ { nix = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - modules = modules; + inherit modules; specialArgs = { inherit inputs; }; }; };