summaryrefslogtreecommitdiff
path: root/home/desktops/sway
diff options
context:
space:
mode:
Diffstat (limited to 'home/desktops/sway')
-rw-r--r--home/desktops/sway/config.nix8
-rw-r--r--home/desktops/sway/default.nix2
2 files changed, 5 insertions, 5 deletions
diff --git a/home/desktops/sway/config.nix b/home/desktops/sway/config.nix
index db8c1a4..19077af 100644
--- a/home/desktops/sway/config.nix
+++ b/home/desktops/sway/config.nix
@@ -50,7 +50,7 @@
startup =
# autostart apps
- builtins.map (command: {
+ map (command: {
inherit command;
always = false;
})
@@ -70,17 +70,17 @@
focused = {
border = primary;
background = base;
- text = text;
indicator = white;
childBorder = primary;
+ inherit text;
};
focusedInactive = {
border = surface;
background = base;
- text = text;
indicator = surface;
childBorder = surface;
+ inherit text;
};
unfocused = focusedInactive;
@@ -88,9 +88,9 @@
urgent = {
border = error;
background = error;
- text = text;
indicator = error;
childBorder = error;
+ inherit text;
};
placeholder = unfocused;
diff --git a/home/desktops/sway/default.nix b/home/desktops/sway/default.nix
index 3553c4a..4fed88d 100644
--- a/home/desktops/sway/default.nix
+++ b/home/desktops/sway/default.nix
@@ -4,7 +4,7 @@
pkgs,
...
}: let
- inherit (lib) mkIf mkDefault;
+ inherit (lib) mkIf;
cfg = config.desktops.sway;
in {
imports = [