mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 19:10:21 +00:00
more cli stuff
This commit is contained in:
parent
4c197d0692
commit
9f0b174303
3 changed files with 105 additions and 0 deletions
11
modules/home-manager/cli/alacritty/default.nix
Normal file
11
modules/home-manager/cli/alacritty/default.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{ pkgs, lib, config } :
|
||||
{
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
window.opacity = 0.9;
|
||||
padding = { x = 5; y = 5; };
|
||||
};
|
||||
};
|
||||
}
|
87
modules/home-manager/cli/fastfetch.nix
Normal file
87
modules/home-manager/cli/fastfetch.nix
Normal 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";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
7
modules/home-manager/default.nix
Normal file
7
modules/home-manager/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ config, lib, ... }: {
|
||||
imports = [
|
||||
./cli/default.nix
|
||||
./hypr/default.nix
|
||||
./ags/default.nix
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue