From 57d5975311953843e85c15018594a52f63b57cf3 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Mon, 16 Dec 2024 13:05:08 +0100 Subject: [PATCH] Create a clean profile --- flake.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/flake.nix b/flake.nix index cd5d34cb..e5f1eea8 100644 --- a/flake.nix +++ b/flake.nix @@ -46,6 +46,26 @@ DerGeret = import ./profiles/machines/manuel/DerGeret/Arch/config.nix; ManuSurface = import ./profiles/machines/manuel/ManuSurface/Arch/config.nix; server = import ./profiles/machines/manuel/server.nix; + clean = { ... }: { + imports = [ + ./lib/modules/valhalla.nix + ]; + + config = { + valhalla = { + hostname = "Falcon"; + + windows = { + users.LocalAdmin = { + groups = [ "Administrators" ]; + programs.oh-my-posh.theme.source = ./profiles/users/manuel/manuel.omp.json; + }; + }; + + software.essential = true; + }; + }; + }; }; }; }