mirror of
https://github.com/blahai/nyx.git
synced 2025-06-08 16:13:02 -04:00
a bunch of hm stuff I cba to split into diff commits
This commit is contained in:
parent
cd751d53c0
commit
ce0cc5229c
13 changed files with 100 additions and 393 deletions
|
@ -1,11 +1,23 @@
|
|||
{ pkgs, lib, config } :
|
||||
{ pkgs, lib, config, ... } :
|
||||
{
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
window.opacity = 0.9;
|
||||
padding = { x = 5; y = 5; };
|
||||
window = {
|
||||
opacity = 0.9;
|
||||
dynamic_padding = true;
|
||||
padding = {
|
||||
x = 5;
|
||||
y = 5;
|
||||
};
|
||||
};
|
||||
font = {
|
||||
normal = {
|
||||
family = "SpaceMono Nerd Font";
|
||||
style = "Regular";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,85 +1,82 @@
|
|||
{ pkgs, lib, config, ... }:
|
||||
{
|
||||
{ pkgs, lib, config, ... }: {
|
||||
programs.fastfetch = {
|
||||
enable = true;
|
||||
settings = {
|
||||
logo = {
|
||||
type = "sixel";
|
||||
source = "~/Pictures/nix-Wallpaper.png";
|
||||
source = "~/Pictures/gay.png";
|
||||
width = 32;
|
||||
};
|
||||
|
||||
display = {
|
||||
separator = " ";
|
||||
};
|
||||
display = { separator = " "; };
|
||||
|
||||
modules = [
|
||||
{
|
||||
type = "custom";
|
||||
format = "┌─────────── \u001b[1mHardware Information\u001b[0m ───────────┐";
|
||||
type = "custom";
|
||||
format = "┌─────────── Hardware Information ───────────┐";
|
||||
}
|
||||
{
|
||||
type = "cpu";
|
||||
key = " ";
|
||||
type = "cpu";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "gpu";
|
||||
key = " ";
|
||||
type = "gpu";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "memory";
|
||||
key = " ";
|
||||
type = "memory";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "swap";
|
||||
key = " ";
|
||||
type = "swap";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "custom";
|
||||
format = "├─────────── \u001b[1mSoftware Information\u001b[0m ───────────┤";
|
||||
type = "custom";
|
||||
format = "├─────────── Software Information ───────────┤";
|
||||
}
|
||||
{
|
||||
type = "title";
|
||||
key = " ";
|
||||
format = "{1}@{2}";
|
||||
type = "title";
|
||||
key = " ";
|
||||
format = "{1}@{2}";
|
||||
}
|
||||
{
|
||||
type = "os";
|
||||
key = " ";
|
||||
type = "os";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "kernel";
|
||||
key = " ";
|
||||
format = "{1} {2}";
|
||||
type = "kernel";
|
||||
key = " ";
|
||||
format = "{1} {2}";
|
||||
}
|
||||
{
|
||||
type = "wm";
|
||||
key = "";
|
||||
type = "wm";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "shell";
|
||||
key = " ";
|
||||
type = "shell";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "terminal";
|
||||
key = " ";
|
||||
type = "terminal";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "uptime";
|
||||
key = " ";
|
||||
type = "uptime";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "media",;
|
||||
key = " ";
|
||||
type = "media";
|
||||
key = " ";
|
||||
}
|
||||
{
|
||||
type = "custom";
|
||||
format = "└────────────────────────────────────────────┘";
|
||||
type = "custom";
|
||||
format = "└────────────────────────────────────────────┘";
|
||||
}
|
||||
{
|
||||
type = "colors";
|
||||
paddingLeft = 2;
|
||||
symbol = "circle";
|
||||
type = "colors";
|
||||
paddingLeft = 2;
|
||||
symbol = "circle";
|
||||
}
|
||||
];
|
||||
};
|
||||
|
|
|
@ -1,8 +1,4 @@
|
|||
{ config, lib, pkgs, ... }: {
|
||||
imports = [
|
||||
../starship/default.nix
|
||||
];
|
||||
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
|
||||
|
|
|
@ -2,48 +2,20 @@
|
|||
programs.foot = {
|
||||
enable = true;
|
||||
settings = {
|
||||
term = "xterm-256color";
|
||||
title = "foot";
|
||||
font = "SpaceMono Nerd Font:size=11";
|
||||
letter-spacing = 0;
|
||||
pad = "25x25";
|
||||
main = {
|
||||
include = "${pkgs.foot.themes}/share/foot/themes/catppuccin-mocha";
|
||||
term = "xterm-256color";
|
||||
title = "foot";
|
||||
font = "SpaceMono Nerd Font:size=11";
|
||||
letter-spacing = 0;
|
||||
pad = "25x25";
|
||||
};
|
||||
cursor = {
|
||||
color = "11111b f5e0dc";
|
||||
style = "beam";
|
||||
beam-thickness = 1.5;
|
||||
};
|
||||
colors = {
|
||||
foreground = "cdd6f4";
|
||||
background = "1e1e2e";
|
||||
alpha = 0.9;
|
||||
|
||||
regular0 = "45475a";
|
||||
regular1 = "f38ba8";
|
||||
regular2 = "a6e3a1";
|
||||
regular3 = "f9e2af";
|
||||
regular4 = "89b4fa";
|
||||
regular5 = "f5c2e7";
|
||||
regular6 = "94e2d5";
|
||||
regular7 = "bac2de";
|
||||
|
||||
bright0 = "585b70";
|
||||
bright1 = "f38ba8";
|
||||
bright2 = "a6e3a1";
|
||||
bright3 = "f9e2af";
|
||||
bright4 = "89b4fa";
|
||||
bright5 = "f5c2e7";
|
||||
bright6 = "94e2d5";
|
||||
bright7 = "a6adc8";
|
||||
|
||||
selection-foreground = "cdd6f4";
|
||||
selection-background = "414356";
|
||||
|
||||
search-box-no-match = "11111b f38ba8";
|
||||
search-box-match = "cdd6f4 313244";
|
||||
|
||||
jump-labels = "11111b fab387";
|
||||
urls = "89b4fa";
|
||||
};
|
||||
colors = { alpha = 0.9; };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -33,7 +33,7 @@
|
|||
"Pictures" = " ";
|
||||
"Videos" = " ";
|
||||
"iso" = " ";
|
||||
".config" = "";
|
||||
".config" = " ";
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue