32 lines
621 B
Nix
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;
|
|
}
|