flake: remove unnecessary rec

pull/64/head
mwojcik 2022-01-19 10:24:15 +08:00
parent 5e42de5ed9
commit 7f427fbc2a
1 changed files with 3 additions and 3 deletions

View File

@ -56,13 +56,13 @@
dontFixup = true;
};
in rec {
packages.x86_64-linux = rec {
in {
packages.x86_64-linux = {
inherit thermostat;
};
hydraJobs = {
inherit (packages.x86_64-linux) thermostat;
inherit thermostat;
};
devShell.x86_64-linux = pkgs.mkShell {