mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-28 19:53:49 -08:00
13 lines
326 B
Nix
13 lines
326 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
home.file.".config/fastfetch/config.jsonc".source = ./config.jsonc;
|
||
|
home.file.".local/share/fastfetch/images/nixos-logo.png".source = ./nixos-logo.png;
|
||
|
programs.fastfetch = {
|
||
|
enable = true;
|
||
|
};
|
||
|
|
||
|
home.packages = [
|
||
|
(pkgs.writeShellScriptBin "neofetch" "${pkgs.fastfetch}/bin/fastfetch")
|
||
|
];
|
||
|
}
|