Initial commit
This commit is contained in:
45
home/common/fastfetch.nix
Normal file
45
home/common/fastfetch.nix
Normal file
@@ -0,0 +1,45 @@
|
||||
{ pkgs, ... } : {
|
||||
home.packages = with pkgs; [
|
||||
fastfetch
|
||||
];
|
||||
|
||||
programs.fastfetch = {
|
||||
enable = true;
|
||||
settings = {
|
||||
logo = {
|
||||
source = "nixos";
|
||||
type = "auto";
|
||||
};
|
||||
display = {
|
||||
separator = " › ";
|
||||
};
|
||||
modules = [
|
||||
"title"
|
||||
"separator"
|
||||
"os"
|
||||
"kernel"
|
||||
"uptime"
|
||||
"packages"
|
||||
"shell"
|
||||
"terminal"
|
||||
"cpu"
|
||||
"gpu"
|
||||
"memory"
|
||||
"swap"
|
||||
"disk"
|
||||
"locale"
|
||||
"localip"
|
||||
"break"
|
||||
"colors"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
programs.bash = {
|
||||
enable = true;
|
||||
shellAliases = {
|
||||
fetch = "fastfetch";
|
||||
};
|
||||
initExtra = "fetch";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user