20 lines
315 B
Nix
20 lines
315 B
Nix
{ 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";
|
|
}
|