diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/commandline.nix | 2 | ||||
-rw-r--r-- | common/commandline/zsh.nix | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/common/commandline.nix b/common/commandline.nix index 76f115a..4c7c128 100644 --- a/common/commandline.nix +++ b/common/commandline.nix | |||
@@ -2,7 +2,7 @@ inputs: | |||
2 | 2 | ||
3 | { config, pkgs, lib, ... }: | 3 | { config, pkgs, lib, ... }: |
4 | 4 | ||
5 | with import ../lib/theme.nix { inherit lib; }; | 5 | with inputs.self.lib.theme; |
6 | let | 6 | let |
7 | dominantEscapeCode = fgEscapeCode config.theme.colors.dominant; | 7 | dominantEscapeCode = fgEscapeCode config.theme.colors.dominant; |
8 | bgDominantEscapeCode = bgEscapeCode config.theme.colors.dominant; | 8 | bgDominantEscapeCode = bgEscapeCode config.theme.colors.dominant; |
diff --git a/common/commandline/zsh.nix b/common/commandline/zsh.nix index b21c2c0..56bdbac 100644 --- a/common/commandline/zsh.nix +++ b/common/commandline/zsh.nix | |||
@@ -2,7 +2,7 @@ inputs: | |||
2 | 2 | ||
3 | { config, lib, pkgs, ... }: | 3 | { config, lib, pkgs, ... }: |
4 | 4 | ||
5 | with import ../../lib/theme.nix { inherit lib; }; | 5 | with inputs.self.lib.theme; |
6 | let | 6 | let |
7 | dominantEscapeCode = fgEscapeCode config.theme.colors.dominant; | 7 | dominantEscapeCode = fgEscapeCode config.theme.colors.dominant; |
8 | in | 8 | in |