fix xkb issues, change espanso formatting, noctalia support
This commit is contained in:
parent
a100acda87
commit
4e3922c4a4
6 changed files with 257 additions and 48 deletions
78
home/modules/programs/noctalia.nix
Normal file
78
home/modules/programs/noctalia.nix
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
{ pkgs, inputs, ... }:
|
||||
{
|
||||
programs.noctalia-shell = {
|
||||
enable = true;
|
||||
systemd.enable = true;
|
||||
settings = {
|
||||
# configure noctalia here
|
||||
dock.enabled = false;
|
||||
osd.enabled = false;
|
||||
location.
|
||||
location = {
|
||||
weatherEnabled = false;
|
||||
monthBeforeDay = true;
|
||||
};
|
||||
general = {
|
||||
avatarImage = "/home/alisceon/Pictures/system/prof.png";
|
||||
radiusRatio = 0.2;
|
||||
};
|
||||
notifications = {
|
||||
density = "compact";
|
||||
location = "top";
|
||||
};
|
||||
appLauncher = {
|
||||
density = "compact";
|
||||
};
|
||||
bar = {
|
||||
density = "compact";
|
||||
position = "top";
|
||||
showCapsule = false;
|
||||
widgets = {
|
||||
left = [
|
||||
{
|
||||
id = "ControlCenter";
|
||||
useDistroLogo = true;
|
||||
}
|
||||
{
|
||||
hideUnoccupied = false;
|
||||
id = "Workspace";
|
||||
labelMode = "index";
|
||||
pillSize = 1;
|
||||
|
||||
}
|
||||
];
|
||||
center = [
|
||||
{
|
||||
id = "ActiveWindow";
|
||||
maxWidth = 512;
|
||||
showIcon = false;
|
||||
}
|
||||
];
|
||||
right = [
|
||||
{
|
||||
id = "Tray";
|
||||
}
|
||||
{
|
||||
id = "NotificationHistory";
|
||||
showUnreadBadge = true;
|
||||
unreadBadgeColor = "primary";
|
||||
}
|
||||
{
|
||||
id = "Battery";
|
||||
alwaysShowPercentage = true;
|
||||
warningThreshold = 30;
|
||||
}
|
||||
{
|
||||
id = "Clock";
|
||||
formatHorizontal = "HH:mm";
|
||||
formatVertical = "HH mm";
|
||||
useMonospacedFont = true;
|
||||
usePrimaryColor = true;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue