clean up and make battery long live

This commit is contained in:
notgne2 2025-10-21 23:23:59 -07:00
parent 08709cf1a9
commit d0a2b164fa
No known key found for this signature in database
7 changed files with 106 additions and 174 deletions

View file

@ -25,19 +25,6 @@ inputs: all: {
'';
};
programs.chromium = {
package = lib.mkDefault (pkgs.ungoogled-chromium.override {
commandLineArgs = lib.concatStringsSep " " [
"--force-dark-mode"
"--enable-features=UseOzonePlatform,WebUIDarkMode,VaapiVideoDecoder"
"--ozone-platform=wayland"
"--ignore-gpu-blocklist"
"--enable-gpu-rasterization"
"--enable-zero-copy"
];
});
};
programs.mpv = {
config = {
profile = lib.mkDefault "gpu-hq";
@ -52,12 +39,19 @@ inputs: all: {
jq
ripgrep
lsd
lsof
file
iotop
htop
zip
unzip
ncdu
nix-index
unrar
lm_sensors
pciutils
usbutils
acpi
corefonts
];

View file

@ -129,6 +129,7 @@ in {
layerrule = [
"blur, bar-.*"
"ignorezero, bar-.*"
"xray on, bar-.*"
# "blur, notifications-window"
# "blur, indicator"
# "ignorezero, indicator"
@ -137,6 +138,12 @@ in {
no_update_news = true;
no_donation_nag = true;
};
animations = {
enabled = false;
};
decoration = {
shadow.enabled = false;
};
misc = {
disable_hyprland_logo = true;
animate_manual_resizes = true;
@ -296,7 +303,7 @@ in {
menus.clock = {
time = {
military = false;
hideSeconds = false;
hideSeconds = true;
};
# weather.unit = "metric";
};

View file

@ -1,60 +0,0 @@
* {
background-color: transparent;
text-color: @foreground;
margin: 0;
padding: 0;
spacing: 0;
}
window {
location: center;
width: 700px;
background-color: @background;
border: 2px solid;
border-color: @border-color;
}
inputbar {
padding: 8px;
spacing: 4px;
background-color: @alternate-normal-background;
color: @alternate-normal-foreground;
}
textbox {
padding: 4px 6px;
background-color: @alternate-normal-background;
}
listview {
columns: 1;
spacing: 8px;
fixed-columns: true;
}
element {
spacing: 1em;
padding: 4px;
}
element normal urgent {
text-color: @urgent-foreground;
}
element normal active {
text-color: @active-foreground;
}
element selected {
background-color: @selected-normal-background;
color: @selected-normal-foreground;
}
element selected urgent {
background-color: @selected-urgent-background;
color: @selected-urgent-foreground;
}
element-text {
text-color: inherit;
}

View file

@ -17,8 +17,87 @@ in {
fzf
xclip
alejandra
pwgen
ncdu
zip
];
programs.nixcord = {
package = pkgs.vencord;
discord.enable = false;
vesktop = {
enable = true;
package = pkgs.vesktop;
};
config = {
transparent = true;
frameless = true;
disableMinSize = true;
# enabledThemes = [];
plugins = {
ircColors.enable = true;
whoReacted.enable = true;
alwaysTrust.enable = true;
anonymiseFileNames = {
enable = true;
anonymiseByDefault = true;
consistent = "file";
method = "consistent";
};
newGuildSettings = {
enable = true;
messages = "only@Mentions";
everyone = true;
role = true;
events = true;
};
copyEmojiMarkdown = {
enable = true;
};
fakeNitro = {
enableEmojiBypass = false;
enableStickerBypass = false;
enableStreamQualityBypass = true;
};
noPendingCount = {
enable = true;
hideFriendRequestsCount = true;
hideMessageRequestCount = true;
hidePremiumOffersCount = true;
};
platformIndicators.enable = true;
userVoiceShow.enable = true;
};
};
dorion = {
enable = false;
package = pkgs.dorion;
theme = "stylix";
themes = ["stylix"];
useNativeTitlebar = true;
# theme = "dark";
# zoom = "1.1";
blur = "acrylic"; # "none", "blur", or "acrylic"
sysTray = true;
openOnStartup = false;
# autoClearCache = true;
# rpcServer = true;
rpcProcessScanner = true;
pushToTalk = true;
pushToTalkKeys = ["RControl"];
desktopNotifications = true;
unreadBadge = true;
};
};
programs.zed-editor = {
extensions = [
"elm"