docs: move remaining Ironclad verifications to Shipped
All checks were successful
Check / eval-and-lint (push) Successful in 6m45s
All checks were successful
Check / eval-and-lint (push) Successful in 6m45s
This commit is contained in:
@@ -1876,24 +1876,25 @@ EOF
|
||||
# DO NOT EDIT MANUALLY - Managed by Nomarchy scripts.
|
||||
# This file mirrors your UI choices (theme, font, etc.) into the declarative
|
||||
# Nix configuration. It is imported by your home.nix.
|
||||
{ lib, ... }:
|
||||
{
|
||||
nomarchy = {
|
||||
theme = \"\${s.theme}\";
|
||||
fonts.monospace = \"\${s.font}\";
|
||||
panelPosition = \"\${s.panelPosition}\";
|
||||
wallpaper = \"\${s.wallpaper}\";
|
||||
theme = lib.mkDefault \"\${s.theme}\";
|
||||
fonts.monospace = lib.mkDefault \"\${s.font}\";
|
||||
panelPosition = lib.mkDefault \"\${s.panelPosition}\";
|
||||
wallpaper = lib.mkDefault \"\${s.wallpaper}\";
|
||||
hyprland = {
|
||||
scale = \"\${s.hyprland.scale}\";
|
||||
gaps_in = \${toString s.hyprland.gaps_in};
|
||||
gaps_out = \${toString s.hyprland.gaps_out};
|
||||
border_size = \${toString s.hyprland.border_size};
|
||||
scale = lib.mkDefault \"\${s.hyprland.scale}\";
|
||||
gaps_in = lib.mkDefault \${toString s.hyprland.gaps_in};
|
||||
gaps_out = lib.mkDefault \${toString s.hyprland.gaps_out};
|
||||
border_size = lib.mkDefault \${toString s.hyprland.border_size};
|
||||
};
|
||||
toggles = {
|
||||
suspend = \${lib.boolToString s.suspend};
|
||||
screensaver = \${lib.boolToString s.screensaver};
|
||||
idle = \${lib.boolToString s.idle};
|
||||
nightlight = \${lib.boolToString s.nightlight};
|
||||
waybar = \${lib.boolToString s.waybar};
|
||||
suspend = lib.mkDefault \${lib.boolToString s.suspend};
|
||||
screensaver = lib.mkDefault \${lib.boolToString s.screensaver};
|
||||
idle = lib.mkDefault \${lib.boolToString s.idle};
|
||||
nightlight = lib.mkDefault \${lib.boolToString s.nightlight};
|
||||
waybar = lib.mkDefault \${lib.boolToString s.waybar};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user