mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-06 09:46:34 +05:30
Compare commits
2 Commits
b4672a26f7
...
b4427dd7ac
Author | SHA1 | Date | |
---|---|---|---|
b4427dd7ac
|
|||
6bb9277f11
|
@ -2,6 +2,7 @@
|
||||
imports = [
|
||||
../../modules/home/git
|
||||
../../modules/home/starship
|
||||
../../modules/home/fastfetch
|
||||
];
|
||||
|
||||
programs = {
|
||||
|
@ -11,6 +11,7 @@
|
||||
../../modules/home/shell
|
||||
../../modules/home/git
|
||||
../../modules/home/starship
|
||||
../../modules/home/fastfetch
|
||||
../../modules/home/nvim
|
||||
../../modules/home/tmux
|
||||
../../modules/home/helix
|
||||
|
@ -2,6 +2,7 @@
|
||||
imports = [
|
||||
../../modules/home/git
|
||||
../../modules/home/starship
|
||||
../../modules/home/fastfetch
|
||||
];
|
||||
|
||||
programs = {
|
||||
|
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;
|
||||
autosuggestion.enable = true;
|
||||
initContent = ''
|
||||
nitch
|
||||
fastfetch
|
||||
export WINIT_X11_SCALE_FACTOR=1
|
||||
bindkey "^A" vi-beginning-of-line
|
||||
bindkey "^E" vi-end-of-line
|
||||
@ -40,7 +40,6 @@
|
||||
home.packages = with pkgs; [
|
||||
service-wrapper
|
||||
lsd
|
||||
nitch
|
||||
ranger
|
||||
wget
|
||||
portal
|
||||
|
Reference in New Issue
Block a user