Pocket: Fixes.

This commit is contained in:
Dmitry Voronin 2024-11-08 10:48:51 +03:00
parent 1313311da8
commit 4227b9c162
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k
2 changed files with 13 additions and 3 deletions

View file

@ -75,7 +75,7 @@ in {
states = {
good = 60;
warning = 40;
critical = 2;
critical = 20;
};
format-icons = [
"󰂎"

View file

@ -1,4 +1,4 @@
{ ... }: {
{ lib, ... }: {
home.nixos.enable = true;
user = {
root.enable = true;
@ -6,7 +6,6 @@
};
module = {
autoupdate.enable = true;
builder.client.enable = true;
keyd.enable = true;
print.enable = true;
@ -14,6 +13,7 @@
enable = true;
extraConfig = ''
output DSI-1 transform 90
input * map_to_output DSI-1
'';
};
kernel = {
@ -38,4 +38,14 @@
gaming.enable = true;
};
};
boot.kernelParams = [
"fbcon=rotate:1"
"video=DSI-1:rotate=90"
];
services.logind = {
powerKey = "ignore";
lidSwitch = "ignore";
};
}