a
This commit is contained in:
16
modules/home-manager/fastfetch.nix
Normal file
16
modules/home-manager/fastfetch.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
|
||||
programs.fastfetch = {
|
||||
enable = true;
|
||||
settings = {
|
||||
# Example: Change colors and add custom options
|
||||
logo = "nixos";
|
||||
color = "blue";
|
||||
keyColor = "cyan";
|
||||
separator = " => ";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
7
modules/home-manager/main.nix
Normal file
7
modules/home-manager/main.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
./fastfetch.nix
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user