nix/system/modules/cosmic.nix
2024-05-15 11:04:21 +10:00

32 lines
621 B
Nix

{...}: {
imports = [
../../util/cosmic.nix
];
services.desktopManager.cosmic = {
enable = true;
keybindings = [
{
modifiers = ["Super"];
key = "a";
action = {
type = "Spawn";
data = "echo ok!";
};
}
{
key = "b";
action = {
type = "Move";
data = "Down";
};
}
];
otherSettings = {
"com.system76.CosmicPanel.Dock" = {
option.opacity = 0.8;
};
};
};
services.displayManager.cosmic-greeter.enable = true;
services.system76-scheduler.enable = true;
}