commit 4ad34be8c6db0b94cb50371adf2c6cb4c9001a27
parent 0c6b6a097e84291a3a371855c46d89683fa88953
Author: Francesco Saccone <francesco@francescosaccone.com>
Date: Mon, 14 Apr 2025 17:01:43 +0200
feat: remove default values of 'backgroundImage' and 'colors'
Signed-off-by: Francesco Saccone <francesco@francescosaccone.com>
Diffstat:
1 file changed, 0 insertions(+), 8 deletions(-)
diff --git a/modules/home-manager/sway/default.nix b/modules/home-manager/sway/default.nix
@@ -26,18 +26,10 @@
};
backgroundImage = lib.mkOption {
description = "The image used as background.";
- default = ./background.png;
type = lib.types.uniq lib.types.path;
};
colors = lib.mkOption {
description = "The hex colors, in '#rrggbb[aa]' format.";
- default = {
- background = "#00112b";
- foreground = "#d5e5ff";
- darkRed = "#c85151";
- green = "#80ff80";
- red = "#da8b8b";
- };
type = lib.types.submodule {
options = {
background = lib.mkOption {