system changes
This commit is contained in:
parent
bf15690788
commit
b4bc14febe
3 changed files with 0 additions and 101 deletions
|
@ -1,99 +0,0 @@
|
||||||
#+title: Fastfetch Configuration
|
|
||||||
|
|
||||||
Specify the layout for =fastfetch=. List out
|
|
||||||
- Operating system
|
|
||||||
- The kernel
|
|
||||||
- Uptime
|
|
||||||
- The number of packages
|
|
||||||
- Shell
|
|
||||||
- Display information
|
|
||||||
- Window manager
|
|
||||||
- Terminal
|
|
||||||
- CPU information
|
|
||||||
- GPU information
|
|
||||||
- Memory information
|
|
||||||
- Disk usage
|
|
||||||
- Locale
|
|
||||||
- Colours
|
|
||||||
|
|
||||||
#+begin_src nix
|
|
||||||
{ config, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
programs.fastfetch = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
logo = {
|
|
||||||
type = "raw";
|
|
||||||
source = "~/.config/fastfetch/logo.sixel";
|
|
||||||
width = 40;
|
|
||||||
height = 19;
|
|
||||||
};
|
|
||||||
display = {
|
|
||||||
separator = " ";
|
|
||||||
};
|
|
||||||
modules = [
|
|
||||||
"title"
|
|
||||||
{
|
|
||||||
type = "custom";
|
|
||||||
format = "──────────────────────────────────";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
type = "os";
|
|
||||||
key = "";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
type = "kernel";
|
|
||||||
key = "";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
type = "uptime";
|
|
||||||
key = "";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
type = "packages";
|
|
||||||
key = "";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
type = "shell";
|
|
||||||
key = "";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
type = "display";
|
|
||||||
key = "";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
type = "wm";
|
|
||||||
key = "";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
type = "terminal";
|
|
||||||
key = "";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
type = "cpu";
|
|
||||||
key = "";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
type = "gpu";
|
|
||||||
key = "";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
type = "memory";
|
|
||||||
key = "";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
type = "disk";
|
|
||||||
key = "";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
type = "locale";
|
|
||||||
key = "";
|
|
||||||
}
|
|
||||||
"break"
|
|
||||||
"colors"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
#+end_src
|
|
|
@ -7,7 +7,6 @@ Import configurations for programs and install programs with no configuration.
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./emacs/core.nix
|
./emacs/core.nix
|
||||||
./fastfetch.nix
|
|
||||||
./ghostty.nix
|
./ghostty.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
../../../../common/.flake/home/programs/fastfetch.nix.org
|
|
Loading…
Add table
Reference in a new issue