more cli stuff

This commit is contained in:
blahai 2024-10-13 02:08:10 +03:00
parent 4c197d0692
commit 9f0b174303
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc
3 changed files with 105 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{ pkgs, lib, config } :
{
programs.alacritty = {
enable = true;
settings = {
window.opacity = 0.9;
padding = { x = 5; y = 5; };
};
};
}

View file

@ -0,0 +1,87 @@
{ pkgs, lib, config, ... }:
{
programs.fastfetch = {
enable = true;
settings = {
logo = {
type = "sixel";
source = "~/Pictures/nix-Wallpaper.png";
width = 32;
};
display = {
separator = " ";
};
modules = [
{
type = "custom";
format = " \u001b[1mHardware Information\u001b[0m ";
}
{
type = "cpu";
key = " ";
}
{
type = "gpu";
key = " ";
}
{
type = "memory";
key = " 󰑭";
}
{
type = "swap";
key = " 󰓡";
}
{
type = "custom";
format = " \u001b[1mSoftware Information\u001b[0m ";
}
{
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";
}
];
};
};
}

View file

@ -0,0 +1,7 @@
{ config, lib, ... }: {
imports = [
./cli/default.nix
./hypr/default.nix
./ags/default.nix
];
}