cosmic config

This commit is contained in:
atagen 2024-05-15 11:04:21 +10:00
parent 83f64681fd
commit 05d0f6a949
4 changed files with 254 additions and 27 deletions

View file

@ -1,5 +1,32 @@
{...}: {
services.desktopManager.cosmic.enable = true;
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;
}