diff options
| author | Fuwn <[email protected]> | 2024-10-03 02:40:15 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-03 02:40:15 -0700 |
| commit | 7b24b0162ff002a0741ecd1830e88f0e0e59ef74 (patch) | |
| tree | 2e3506aad4f54523e9706758d8970eddcbe0e00b /home/ebisu/core | |
| parent | home: moves some modules to core (diff) | |
| download | nixos-config-7b24b0162ff002a0741ecd1830e88f0e0e59ef74.tar.xz nixos-config-7b24b0162ff002a0741ecd1830e88f0e0e59ef74.zip | |
core: fix fastfetch logo path
Diffstat (limited to 'home/ebisu/core')
| -rw-r--r-- | home/ebisu/core/rice/fastfetch.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/ebisu/core/rice/fastfetch.nix b/home/ebisu/core/rice/fastfetch.nix index 8020e57..25a0094 100644 --- a/home/ebisu/core/rice/fastfetch.nix +++ b/home/ebisu/core/rice/fastfetch.nix @@ -1,11 +1,11 @@ -{ config, flakeDirectory, ... }: +{ config, self, ... }: { programs.fastfetch = { enable = true; settings = { logo = { - source = "${flakeDirectory}/home/${config.home.username}/logo.png"; + source = "${self}/home/${config.home.username}/kansai/logo.png"; width = 30; padding.top = 0; }; |