Define imv keys, switch to btop, put stateful data in per-system config
This commit is contained in:
parent
0d212ce643
commit
a589e07a6c
29 changed files with 121 additions and 114 deletions
20
modules/home/settings/gtk/css/default.nix
Normal file
20
modules/home/settings/gtk/css/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ ... }:
|
||||
{
|
||||
gtk = {
|
||||
# Disable shadows
|
||||
gtk3.extraCss = ''
|
||||
* { outline-width: 0px; }
|
||||
decoration { box-shadow: none; }
|
||||
'';
|
||||
|
||||
# Prevent GTK4 rounding
|
||||
gtk4.extraCss = ''
|
||||
window {
|
||||
border-top-left-radius:0;
|
||||
border-top-right-radius:0;
|
||||
border-bottom-left-radius:0;
|
||||
border-bottom-right-radius:0;
|
||||
}
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue