mirror of
https://github.com/blahai/nyx.git
synced 2025-06-08 08:23:03 -04:00
Home: add fastfetch image to nix
This commit is contained in:
parent
30c2cb62b1
commit
cfdc1a7830
3 changed files with 2 additions and 1 deletions
85
modules/home-manager/cli/fastfetch/fastfetch.nix
Normal file
85
modules/home-manager/cli/fastfetch/fastfetch.nix
Normal file
|
@ -0,0 +1,85 @@
|
|||
{ pkgs, lib, config, ... }: {
|
||||
home.file."Pictures/gay.png".source = ./gay.png;
|
||||
programs.fastfetch = {
|
||||
enable = true;
|
||||
settings = {
|
||||
logo = {
|
||||
type = "sixel";
|
||||
source = "~/Pictures/gay.png";
|
||||
width = 32;
|
||||
};
|
||||
|
||||
display = { separator = " "; };
|
||||
|
||||
modules = [
|
||||
{
|
||||
type = "custom";
|
||||
format = "┌─────────── Hardware Information ───────────┐";
|
||||
}
|
||||
{
|
||||
type = "cpu";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "gpu";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "memory";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "swap";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "custom";
|
||||
format = "├─────────── Software Information ───────────┤";
|
||||
}
|
||||
{
|
||||
type = "title";
|
||||
key = " ";
|
||||
format = "{1}@{2}";
|
||||
}
|
||||
{
|
||||
type = "os";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "kernel";
|
||||
key = " ";
|
||||
format = "{1} {2}";
|
||||
}
|
||||
{
|
||||
type = "wm";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "shell";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "terminal";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "uptime";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "media";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "custom";
|
||||
format = "└────────────────────────────────────────────┘";
|
||||
}
|
||||
{
|
||||
type = "colors";
|
||||
paddingLeft = 2;
|
||||
symbol = "circle";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue