remove home-manager and some old files

This commit is contained in:
2026-04-20 00:08:47 +01:00
parent 7ed11cbb54
commit 67a1e0ced0
25 changed files with 194 additions and 1393 deletions
-48
View File
@@ -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;
};
};
};
}
-69
View File
@@ -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"
];
};
};
}