From 4f28dd95b24637facb08c391388c88646b83baa4 Mon Sep 17 00:00:00 2001 From: Valentin Brandl Date: Mon, 14 Nov 2022 00:21:23 +0100 Subject: [PATCH] Use nixos unstable channel --- flake.lock | 34 +++++++++++++++++++++++++--------- flake.nix | 5 +++-- 2 files changed, 28 insertions(+), 11 deletions(-) diff --git a/flake.lock b/flake.lock index dc5abe6..ceb2f7d 100644 --- a/flake.lock +++ b/flake.lock @@ -19,35 +19,36 @@ "inputs": { "nixpkgs": [ "nixpkgs" - ] + ], + "utils": "utils" }, "locked": { - "lastModified": 1667907331, - "narHash": "sha256-bHkAwkYlBjkupPUFcQjimNS8gxWSWjOTevEuwdnp5m0=", + "lastModified": 1667981810, + "narHash": "sha256-p27zd5M+OkfND46gzbGkaHlNBZsYe95M48OJuFeuuSY=", "owner": "nix-community", "repo": "home-manager", - "rev": "6639e3a837fc5deb6f99554072789724997bc8e5", + "rev": "6ce3493a3c5c6a8f4cfa6f5f88723272e0cfd335", "type": "github" }, "original": { "owner": "nix-community", - "ref": "release-22.05", + "ref": "master", "repo": "home-manager", "type": "github" } }, "nixpkgs": { "locked": { - "lastModified": 1668016843, - "narHash": "sha256-ioBuF+IAhmJO7s4ewEij1LkMxJvCCNCKXxMto/DU02I=", + "lastModified": 1667991831, + "narHash": "sha256-DHgEsLZI044B9T4AjA3K6+yB9/DqLr4dyA7OIx0FG7o=", "owner": "nixos", "repo": "nixpkgs", - "rev": "fa842715565307b7e05cdb187b08c05f16ed08f1", + "rev": "872fceeed60ae6b7766cc0a4cd5bf5901b9098ec", "type": "github" }, "original": { "owner": "nixos", - "ref": "nixos-22.05", + "ref": "nixos-unstable", "repo": "nixpkgs", "type": "github" } @@ -58,6 +59,21 @@ "home-manager": "home-manager", "nixpkgs": "nixpkgs" } + }, + "utils": { + "locked": { + "lastModified": 1667395993, + "narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } } }, "root": "root", diff --git a/flake.nix b/flake.nix index b1ca96c..ed2fa6a 100644 --- a/flake.nix +++ b/flake.nix @@ -1,11 +1,12 @@ { inputs = { home-manager = { - url = "github:nix-community/home-manager/release-22.05"; + url = "github:nix-community/home-manager/master"; + /* url = "github:nix-community/home-manager/release-22.05"; */ inputs.nixpkgs.follows = "nixpkgs"; }; nixpkgs = { - url = "github:nixos/nixpkgs/nixos-22.05"; + url = "github:nixos/nixpkgs/nixos-unstable"; }; flake-utils = { url = "github:numtide/flake-utils";