diff --git a/flake.lock b/flake.lock index 18aa6be..9d95222 100644 --- a/flake.lock +++ b/flake.lock @@ -1,17 +1,36 @@ { "nodes": { + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1701680307, + "narHash": "sha256-kAuep2h5ajznlPMD9rnQyffWG8EM/C73lejGofXvdM8=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "4022d587cbbfd70fe950c1e2083a02621806a725", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "nixos-modules": { "inputs": { - "nixpkgs-lib": [ - "nixpkgs-lib" + "flake-utils": "flake-utils", + "nixpkgs": [ + "nixpkgs" ] }, "locked": { - "lastModified": 1703899776, - "narHash": "sha256-I1hE5u3VR/1h2ZM0Q4B1L1BccLFGNfMPPQyy3CRLFqs=", + "lastModified": 1704737997, + "narHash": "sha256-QqqMOWa7cy58kCAHAXJ/Z5oxRvz7XC5H8fjFs8oHYww=", "owner": "SuperSandro2000", "repo": "nixos-modules", - "rev": "2e9865e82f060907d4be682a514bdf0af86ad25e", + "rev": "95edbb97c8b2dfdfdbebd57bf04e96720aa7e056", "type": "github" }, "original": { @@ -20,25 +39,41 @@ "type": "github" } }, - "nixpkgs-lib": { + "nixpkgs": { "locked": { - "lastModified": 1703378839, - "narHash": "sha256-wJDrJji9XNMgAsO+Ah34BaraG8bAw9GF7poJQPE0TqU=", - "owner": "nix-community", - "repo": "nixpkgs.lib", - "rev": "9b3a550ca7d42f5ceb3acc13f95dae1a69e6de56", + "lastModified": 1704538339, + "narHash": "sha256-1734d3mQuux9ySvwf6axRWZRBhtcZA9Q8eftD6EZg6U=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "46ae0210ce163b3cba6c7da08840c1d63de9c701", "type": "github" }, "original": { - "owner": "nix-community", - "repo": "nixpkgs.lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, "root": { "inputs": { "nixos-modules": "nixos-modules", - "nixpkgs-lib": "nixpkgs-lib" + "nixpkgs": "nixpkgs" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" } } }, diff --git a/flake.nix b/flake.nix index 582d573..6740943 100644 --- a/flake.nix +++ b/flake.nix @@ -2,10 +2,10 @@ description = "C3D2 NixOS user module"; inputs = { - nixpkgs-lib.url = "github:nix-community/nixpkgs.lib"; + nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; nixos-modules = { url = "github:SuperSandro2000/nixos-modules"; - inputs.nixpkgs-lib.follows = "nixpkgs-lib"; + inputs.nixpkgs.follows = "nixpkgs"; }; };