configures noctalia
This commit is contained in:
parent
4997c38582
commit
3caab2bb10
6 changed files with 96 additions and 17 deletions
|
|
@ -3,8 +3,8 @@
|
|||
./awww
|
||||
./cliphist
|
||||
./fuzzel
|
||||
./waybar
|
||||
./niri
|
||||
./swaync
|
||||
./noctalia
|
||||
];
|
||||
}
|
||||
|
|
|
|||
72
modules/wm/noctalia/default.nix
Normal file
72
modules/wm/noctalia/default.nix
Normal file
|
|
@ -0,0 +1,72 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
programs.noctalia-shell = {
|
||||
enable = true;
|
||||
systemd.enable = true;
|
||||
settings = {
|
||||
# configure noctalia here
|
||||
bar = {
|
||||
density = "compact";
|
||||
position = "left";
|
||||
floating = true;
|
||||
marginHorizontal = 4;
|
||||
marginVertical = 4;
|
||||
showCapsule = false;
|
||||
widgets = {
|
||||
left = [
|
||||
{
|
||||
id = "ControlCenter";
|
||||
useDistroLogo = true;
|
||||
}
|
||||
{
|
||||
id = "Network";
|
||||
}
|
||||
{
|
||||
id = "Bluetooth";
|
||||
}
|
||||
];
|
||||
center = [
|
||||
{
|
||||
hideUnoccupied = false;
|
||||
id = "Workspace";
|
||||
labelMode = "none";
|
||||
}
|
||||
];
|
||||
right = [
|
||||
{
|
||||
alwaysShowPercentage = false;
|
||||
id = "Battery";
|
||||
warningThreshold = 30;
|
||||
}
|
||||
{
|
||||
formatHorizontal = "HH:mm";
|
||||
formatVertical = "HH mm";
|
||||
id = "Clock";
|
||||
useMonospacedFont = true;
|
||||
usePrimaryColor = true;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
colorSchemes.predefinedScheme = "Monochrome";
|
||||
general = {
|
||||
avatarImage = "/home/drfoobar/.face";
|
||||
radiusRatio = 0.2;
|
||||
};
|
||||
location = {
|
||||
monthBeforeDay = true;
|
||||
name = "Munich, Germany";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
home.file.".cache/noctalia/wallpapers.json" = {
|
||||
text = builtins.toJSON {
|
||||
defaultWallpaper = "~/Pictures/Wallpapers/safe/dark/mountain.jpg";
|
||||
wallpapers = {
|
||||
"DP-1" = "~/Pictures/Wallpapers/safe/dark/mountain.jpg";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue