mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-06 09:46:34 +05:30
feat: replaced nitch with fastfetch
This commit is contained in:
@ -11,6 +11,7 @@
|
|||||||
../../modules/home/shell
|
../../modules/home/shell
|
||||||
../../modules/home/git
|
../../modules/home/git
|
||||||
../../modules/home/starship
|
../../modules/home/starship
|
||||||
|
../../modules/home/fastfetch
|
||||||
../../modules/home/nvim
|
../../modules/home/nvim
|
||||||
../../modules/home/tmux
|
../../modules/home/tmux
|
||||||
../../modules/home/helix
|
../../modules/home/helix
|
||||||
|
73
modules/home/fastfetch/default.nix
Normal file
73
modules/home/fastfetch/default.nix
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
{...}: {
|
||||||
|
home.file.".config/fastfetch/config.jsonc".text = ''
|
||||||
|
{
|
||||||
|
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||||
|
"logo": {
|
||||||
|
"type": "none",
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"separator": " ",
|
||||||
|
"key": {
|
||||||
|
"width": 18,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
"modules": [
|
||||||
|
{
|
||||||
|
"key": " ╭───────────╮",
|
||||||
|
"type": "custom",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": " │ │\u001b[11D{#31} user",
|
||||||
|
"type": "title",
|
||||||
|
"format": "{1}",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": " │ │\u001b[11D{#34} hname",
|
||||||
|
"type": "command",
|
||||||
|
"text": "hostname",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": " │ │\u001b[11D{#34} distro",
|
||||||
|
"type": "os",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": " │ │\u001b[11D{#35} kernel",
|
||||||
|
"type": "kernel",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": " │ │\u001b[11D{#31} uptime",
|
||||||
|
"type": "uptime",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": " │ │\u001b[11D{#32} shell",
|
||||||
|
"type": "shell",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": " │ │\u001b[11D{#35} pkgs",
|
||||||
|
"type": "packages",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": " │ │\u001b[11D{#35} memory",
|
||||||
|
"type": "memory",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": " ├───────────┤",
|
||||||
|
"type": "custom",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": " │ │\u001b[11D{#39} colors",
|
||||||
|
"type": "colors",
|
||||||
|
"symbol": "circle",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": " ╰───────────╯",
|
||||||
|
"type": "custom",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
|
||||||
|
programs.fastfetch = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
@ -9,7 +9,7 @@
|
|||||||
syntaxHighlighting.enable = true;
|
syntaxHighlighting.enable = true;
|
||||||
autosuggestion.enable = true;
|
autosuggestion.enable = true;
|
||||||
initContent = ''
|
initContent = ''
|
||||||
nitch
|
fastfetch
|
||||||
export WINIT_X11_SCALE_FACTOR=1
|
export WINIT_X11_SCALE_FACTOR=1
|
||||||
bindkey "^A" vi-beginning-of-line
|
bindkey "^A" vi-beginning-of-line
|
||||||
bindkey "^E" vi-end-of-line
|
bindkey "^E" vi-end-of-line
|
||||||
@ -40,7 +40,6 @@
|
|||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
service-wrapper
|
service-wrapper
|
||||||
lsd
|
lsd
|
||||||
nitch
|
|
||||||
ranger
|
ranger
|
||||||
wget
|
wget
|
||||||
portal
|
portal
|
||||||
|
Reference in New Issue
Block a user