marleyos/homes/x86_64-linux/marley@nyx/default.nix

21 lines
315 B
Nix
Raw Normal View History

2024-11-15 22:12:35 -08:00
{ lib, namespace, ... }:
let
inherit (lib.${namespace}) enabled;
in
{
2024-11-15 22:12:35 -08:00
home.keyboard.options = [ "apple:alupckeys" ];
${namespace} = {
appearance = {
base = enabled;
gtk = enabled;
qt = enabled;
};
xorg = {
xsession = enabled;
};
};
home.stateVersion = "24.05";
}