diff options
author | Minijackson <minijackson@riseup.net> | 2024-06-07 10:28:58 +0200 |
---|---|---|
committer | Minijackson <minijackson@riseup.net> | 2024-06-07 10:28:58 +0200 |
commit | 28f90bdb63f824917c9aaff22e23a32f0aae1be4 (patch) | |
tree | 0ce2710c98565d8d8fa74925789d51f71490e2a6 /common | |
parent | c6cfa4e946d1b08364e64a2ef80bd579a61cef5e (diff) | |
download | nixos-config-reborn-28f90bdb63f824917c9aaff22e23a32f0aae1be4.tar.gz nixos-config-reborn-28f90bdb63f824917c9aaff22e23a32f0aae1be4.zip |
flake: upgrade NixOS 23.11 -> 24.05
Diffstat (limited to 'common')
-rw-r--r-- | common/commandline.nix | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/common/commandline.nix b/common/commandline.nix index 7a490c0..c779fdd 100644 --- a/common/commandline.nix +++ b/common/commandline.nix | |||
@@ -4,10 +4,11 @@ inputs: { | |||
4 | lib, | 4 | lib, |
5 | ... | 5 | ... |
6 | }: | 6 | }: |
7 | with inputs.self.lib.theme; let | 7 | let |
8 | dominantEscapeCode = fgEscapeCode config.theme.colors.dominant; | 8 | inherit (inputs.self.lib) theme; |
9 | bgDominantEscapeCode = bgEscapeCode config.theme.colors.dominant; | 9 | dominantEscapeCode = theme.fgEscapeCode config.theme.colors.dominant; |
10 | backgroundEscapeCode = fgEscapeCode config.theme.colors.background; | 10 | bgDominantEscapeCode = theme.bgEscapeCode config.theme.colors.dominant; |
11 | backgroundEscapeCode = theme.fgEscapeCode config.theme.colors.background; | ||
11 | in { | 12 | in { |
12 | imports = [ | 13 | imports = [ |
13 | (import ./commandline/dircolors.nix inputs) | 14 | (import ./commandline/dircolors.nix inputs) |
@@ -131,7 +132,7 @@ in { | |||
131 | 132 | ||
132 | programs.eza = { | 133 | programs.eza = { |
133 | enable = true; | 134 | enable = true; |
134 | enableAliases = true; | 135 | enableZshIntegration = true; |
135 | }; | 136 | }; |
136 | 137 | ||
137 | home.sessionVariables = { | 138 | home.sessionVariables = { |