cosmic config
This commit is contained in:
parent
83f64681fd
commit
05d0f6a949
4 changed files with 254 additions and 27 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue