From 8e9a5d1e96167cb56d705f7e2ffa2f49a56e0374 Mon Sep 17 00:00:00 2001 From: kat Date: Mon, 14 Nov 2022 11:13:56 -0800 Subject: [PATCH] fix: state version --- flake.lock | 40 ++++++++++++++++++++++++++++------------ system/root.nix | 3 +++ 2 files changed, 31 insertions(+), 12 deletions(-) create mode 100644 system/root.nix diff --git a/flake.lock b/flake.lock index e267f9ec..3ce4ed5e 100644 --- a/flake.lock +++ b/flake.lock @@ -268,18 +268,19 @@ "inputs": { "nixpkgs": [ "nixpkgs" - ] + ], + "utils": "utils" }, "locked": { - "lastModified": 1649980189, - "narHash": "sha256-55dgKGs7W8eC3s9GYewll9y4IlP/KAlSinjQwshNpxM=", - "owner": "kittywitch", + "lastModified": 1668332334, + "narHash": "sha256-YT1qcE/MCqBO1Bi/Yr6GcFpNKsvmzrBKh8juyXDbxQc=", + "owner": "nix-community", "repo": "home-manager", - "rev": "c591c34311923598fc0092ed06da6e4a515354d7", + "rev": "bc90de24d898655542589237cc0a6ada7564cb6c", "type": "github" }, "original": { - "owner": "kittywitch", + "owner": "nix-community", "ref": "master", "repo": "home-manager", "type": "github" @@ -373,11 +374,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1668087632, - "narHash": "sha256-T/cUx44aYDuLMFfaiVpMdTjL4kpG7bh0VkN6JEM78/E=", + "lastModified": 1668326430, + "narHash": "sha256-fJEsHe+lzFf3qcQVTTdK9jqRtUUVXH71tdfgjcKJNpA=", "owner": "nixos", "repo": "nixpkgs", - "rev": "5f588eb4a958f1a526ed8da02d6ea1bea0047b9f", + "rev": "fc07622617a373a742ed96d4dd536849d4bc1ec6", "type": "github" }, "original": { @@ -405,11 +406,11 @@ }, "nur": { "locked": { - "lastModified": 1668255064, - "narHash": "sha256-JWVzaBAC9eL+Eg/SG71ZPSDQQd/eO9sS2YNGrlDDEH4=", + "lastModified": 1668439646, + "narHash": "sha256-6ImukgwTQXvJWxkk3vvlsswWI16hZbdaOxx+49rlDkg=", "owner": "nix-community", "repo": "nur", - "rev": "9a0be7d4b9de779707b8788c6bdaaf23160a7975", + "rev": "437d04eb2226617399797449a5bbf847d3324240", "type": "github" }, "original": { @@ -612,6 +613,21 @@ "type": "github" } }, + "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" + } + }, "ws-butler": { "flake": false, "locked": { diff --git a/system/root.nix b/system/root.nix new file mode 100644 index 00000000..13d09197 --- /dev/null +++ b/system/root.nix @@ -0,0 +1,3 @@ +{ config, ... }: { + home-manager.users.root.home.stateVersion = "20.09"; +}