remove home-manager and some old files
This commit is contained in:
@@ -1,48 +0,0 @@
|
||||
{ config, pkgs, lib, ... }:
|
||||
|
||||
{
|
||||
services.dunst = {
|
||||
enable = true;
|
||||
settings = {
|
||||
global = {
|
||||
offset = "4x4";
|
||||
frame_color = "#881798";
|
||||
gap_size = 2;
|
||||
corner_radius = 10;
|
||||
frame_width = 2;
|
||||
font = "FiraCodeNerdFont";
|
||||
enable_recursive_icon_lookup = true;
|
||||
icon_theme = "Arc";
|
||||
};
|
||||
|
||||
urgency_low = {
|
||||
background = "#050D0E";
|
||||
foreground = "#ecefee";
|
||||
timeout = 5;
|
||||
};
|
||||
urgency_normal = {
|
||||
background = "#050D0E";
|
||||
foreground = "#ecefee";
|
||||
timeout = 5;
|
||||
};
|
||||
urgency_high = {
|
||||
background = "#cc474f";
|
||||
foreground = "#eceffe";
|
||||
timeout = 5;
|
||||
};
|
||||
|
||||
volume_rule = {
|
||||
appname = "volume_indicator";
|
||||
background = "#050D0E88";
|
||||
foreground = "#ecefee";
|
||||
timeout = 1;
|
||||
};
|
||||
brightness_rule = {
|
||||
appname = "brightness_indicator";
|
||||
background = "#050D0E88";
|
||||
foreground = "#ecefee";
|
||||
timeout = 1;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -1,69 +0,0 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.fastfetch = {
|
||||
enable = true;
|
||||
settings = {
|
||||
logo = {
|
||||
# source = "nixos";
|
||||
source = "$HOME/pictures/smol-penguin.png";
|
||||
type = "kitty";
|
||||
# width = 18;
|
||||
# height = 9;
|
||||
# color = {
|
||||
# "1" = "white";
|
||||
# "2" = "green";
|
||||
# };
|
||||
padding = {
|
||||
top = 1; # put this on 2 for picture source
|
||||
left = 1;
|
||||
right = 2;
|
||||
};
|
||||
};
|
||||
display = {
|
||||
separator = " -> ";
|
||||
color = {
|
||||
keys = "green";
|
||||
};
|
||||
};
|
||||
modules = [
|
||||
"title"
|
||||
{
|
||||
type = "custom";
|
||||
format = "────────── Env ──────────";
|
||||
color = "green";
|
||||
}
|
||||
{
|
||||
type = "os";
|
||||
key = "OS ";
|
||||
}
|
||||
{
|
||||
type = "wm";
|
||||
key = "WM ";
|
||||
}
|
||||
"editor"
|
||||
"break"
|
||||
{
|
||||
type = "custom";
|
||||
format = "────────── Sys ──────────";
|
||||
}
|
||||
"cpu"
|
||||
"gpu"
|
||||
{
|
||||
type = "memory";
|
||||
key = "MEM";
|
||||
}
|
||||
"vulkan"
|
||||
"disk"
|
||||
"battery"
|
||||
{
|
||||
type = "custom";
|
||||
format = "─────────────────────────";
|
||||
}
|
||||
"break"
|
||||
"colors"
|
||||
"break"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user