Anthony Rodriguez
b808281674
Started moving HM config to the new local modules system. Conditionally toggling based on profiles and modules.
16 lines
258 B
Nix
16 lines
258 B
Nix
{
|
|
lib,
|
|
osConfig,
|
|
...
|
|
}: {
|
|
config = lib.mkIf osConfig.local.profiles.desktop.enable {
|
|
dconf = {
|
|
enable = true;
|
|
settings = {
|
|
"org/gnome/desktop/wm/preferences" = {
|
|
button-layout = "";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|