From 2ab4df3f600faae4c5f3c658c717827602fb0136 Mon Sep 17 00:00:00 2001 From: Pacman99 Date: Sat, 15 May 2021 10:31:54 -0700 Subject: [PATCH] suites: re-add `rec` to simplify suite definitions --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 6b6860f5..535c7174 100644 --- a/flake.nix +++ b/flake.nix @@ -70,7 +70,7 @@ NixOS = { }; }; profiles = [ ./profiles ./users ]; - suites = { profiles, users, ... }: with profiles; { + suites = { profiles, users, ... }: with profiles; rec { base = [ core users.nixos users.root ]; }; }; @@ -79,7 +79,7 @@ modules = ./users/modules/module-list.nix; externalModules = [ ]; profiles = [ ./users/profiles ]; - suites = { profiles, ... }: with profiles; { + suites = { profiles, ... }: with profiles; rec { base = [ direnv git ]; }; };