Compare commits

...

4 commits

Author SHA1 Message Date
Leonardo Eugênio 16d3af4edb update 2024-09-05 22:14:22 -03:00
Leonardo Eugênio 8e839d9174 monolith: undervolt to -120 2024-09-05 22:14:15 -03:00
Leonardo Eugênio d710bed16a firefox: improve theme 2024-09-05 22:13:38 -03:00
Leonardo Eugênio d6d5643040 Revert "monolith: switch to latest kernel"
This reverts commit 42de0ba722.
2024-09-02 19:13:59 -03:00
4 changed files with 20 additions and 18 deletions

View file

@ -456,11 +456,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1724727824,
"narHash": "sha256-0XH9MJk54imJm+RHOLTUJ7e+ponLW00tw5ke4MTVa1Y=",
"lastModified": 1725407940,
"narHash": "sha256-tiN5Rlg/jiY0tyky+soJZoRzLKbPyIdlQ77xVgREDNM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "36bae45077667aff5720e5b3f1a5458f51cf0776",
"rev": "6f6c45b5134a8ee2e465164811e451dcb5ad86e3",
"type": "github"
},
"original": {

View file

@ -36,8 +36,6 @@ in
hardware.opentabletdriver.enable = true;
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.extraModulePackages = with config.boot.kernelPackages; [ zenpower ];
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelModules = [

View file

@ -6,7 +6,7 @@ let
echo "manual" > power_dpm_force_performance_level
echo "1" > pp_power_profile_mode
test -e pp_od_clk_voltage
echo "vo -100" > pp_od_clk_voltage
echo "vo -120" > pp_od_clk_voltage
echo "c" > pp_od_clk_voltage
'';
in

View file

@ -64,28 +64,19 @@ in
.toolbar-items {
display: none;
}
#private-browsing-indicator-with-label {
display: none;
}
/* Create a horizontal container */
#navigator-toolbox {
display: grid;
grid-template-columns: 1fr 50px;
}
/* Make the url bar occupy the entire size of the container */
#nav-bar {
grid-column: 1 / 3;
grid-row: 1;
z-index: 1;
padding-right: 29px !important;
}
/* shrink the tab bar to a small size, since it's only the window close button basically */
#titlebar {
position: absolute;
right: 0;
top: 10px;
max-width: 50px;
grid-area: 1 / 2;
z-index: 10;
}
@ -94,6 +85,19 @@ in
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
/* Make the private browser indicator look nice, over the close-window button */
#private-browsing-indicator-with-label {
position: absolute;
top: 4px;
left: 15px;
z-index: 20;
pointer-events: none;
}
#private-browsing-indicator-with-label > label {
display: none;
}
'';
};
};