formatting, big time

This commit is contained in:
Schrottkatze 2025-04-11 09:20:46 +02:00
commit 509320c115
No known key found for this signature in database
64 changed files with 1293 additions and 990 deletions

View file

@ -1,5 +1,6 @@
{pkgs, ...}: {
home.packages = [pkgs.gamescope];
{ pkgs, ... }:
{
home.packages = [ pkgs.gamescope ];
programs.niri.settings = {
window-rules = [
{
@ -48,12 +49,16 @@
is-floating = true;
}
];
geometry-corner-radius = let val = 5.; in {
bottom-left = val;
bottom-right = val;
top-left = val;
top-right = val;
};
geometry-corner-radius =
let
val = 5.;
in
{
bottom-left = val;
bottom-right = val;
top-left = val;
top-right = val;
};
}
];