From 4dd208ca1bb8e4428fa60c0deb206fc208d0a9d4 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Fri, 15 Nov 2024 22:12:35 -0800 Subject: [PATCH] feat(home/nyx): Add modules --- homes/x86_64-linux/marley@nyx/default.nix | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/homes/x86_64-linux/marley@nyx/default.nix b/homes/x86_64-linux/marley@nyx/default.nix index 351f1f0..aee072d 100644 --- a/homes/x86_64-linux/marley@nyx/default.nix +++ b/homes/x86_64-linux/marley@nyx/default.nix @@ -1,4 +1,20 @@ -{ _ }: +{ lib, namespace, ... }: +let + inherit (lib.${namespace}) enabled; +in { + home.keyboard.options = [ "apple:alupckeys" ]; + + ${namespace} = { + appearance = { + base = enabled; + gtk = enabled; + qt = enabled; + }; + xorg = { + xsession = enabled; + }; + }; + home.stateVersion = "24.05"; }