From 17a0eb1f8be16c2eb59f598937b86ad2210d69b7 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 24 Aug 2024 18:35:43 +0200 Subject: [PATCH] Fix malformed module --- profiles/manuel/config.nix | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/profiles/manuel/config.nix b/profiles/manuel/config.nix index 16c6fe3c..15e3feff 100644 --- a/profiles/manuel/config.nix +++ b/profiles/manuel/config.nix @@ -1,8 +1,22 @@ { ... }: { - valhalla.users.manuel = { - oh-my-posh = { - theme = { - source = ./manuel.omp.json; + imports = [ + ../../lib/modules/valhalla.nix + ]; + + config = { + valhalla = { + users.manuel = { + oh-my-posh = { + theme = { + source = ./manuel.omp.json; + }; + }; + }; + + partition = { + os = { + partitions = { }; + }; }; }; };