From d2c9b72eb6050804aae0039ee1c64725a235a20f Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Sun, 9 May 2021 11:30:49 +0200 Subject: [PATCH] flake: add profiles folder This will be used for configurations that either consolidates multiple options that make sens to use together, or span accross system and home configuration. --- flake.nix | 2 ++ profiles/default.nix | 7 +++++++ 2 files changed, 9 insertions(+) create mode 100644 profiles/default.nix diff --git a/flake.nix b/flake.nix index 8f55618..f54c252 100644 --- a/flake.nix +++ b/flake.nix @@ -60,6 +60,8 @@ } # Include generic settings ./modules + # Include bundles of settings + ./profiles # Include my secrets ./secrets # Include my services diff --git a/profiles/default.nix b/profiles/default.nix new file mode 100644 index 0000000..d726f32 --- /dev/null +++ b/profiles/default.nix @@ -0,0 +1,7 @@ +# Configuration that spans accross system and home, or are almagations of modules +{ ... }: +{ + imports = [ + # FIXME + ]; +}