diff options
Diffstat (limited to 'common/services/default.nix')
| -rw-r--r-- | common/services/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/common/services/default.nix b/common/services/default.nix new file mode 100644 index 0000000..2b1b73a --- /dev/null +++ b/common/services/default.nix @@ -0,0 +1,13 @@ +{ pkgs, ... }: +let + services = [ + "greetd" + "pipewire" + ]; +in +builtins.listToAttrs ( + map (n: { + name = n; + value = import ./${n}.nix { inherit pkgs; }; + }) services +) |