Update home.nix

This commit is contained in:
ediblerope 2025-12-08 12:12:41 +00:00 committed by GitHub
parent 49fb2fce64
commit c77673794d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -66,19 +66,19 @@
# Rounded Window Corners extension
"org/gnome/shell/extensions/rounded-window-corners-reborn/global-rounded-corner-settings" = {
padding = lib.hm.gvariant.mkDictionaryEntry [
[ "left" (lib.hm.gvariant.mkUint32 2) ]
[ "right" (lib.hm.gvariant.mkUint32 2) ]
[ "top" (lib.hm.gvariant.mkUint32 2) ]
[ "bottom" (lib.hm.gvariant.mkUint32 2) ]
];
keepRoundedCorners = lib.hm.gvariant.mkDictionaryEntry [
[ "maximized" true ]
[ "fullscreen" true ]
];
borderRadius = lib.hm.gvariant.mkUint32 7;
smoothing = 0.0;
enabled = true;
};
padding = lib.hm.gvariant.mkDictionaryEntry [
(lib.hm.gvariant.mkDictionaryEntry [ "left" (lib.hm.gvariant.mkUint32 2) ])
(lib.hm.gvariant.mkDictionaryEntry [ "right" (lib.hm.gvariant.mkUint32 2) ])
(lib.hm.gvariant.mkDictionaryEntry [ "top" (lib.hm.gvariant.mkUint32 2) ])
(lib.hm.gvariant.mkDictionaryEntry [ "bottom" (lib.hm.gvariant.mkUint32 2) ])
];
keepRoundedCorners = lib.hm.gvariant.mkDictionaryEntry [
(lib.hm.gvariant.mkDictionaryEntry [ "maximized" true ])
(lib.hm.gvariant.mkDictionaryEntry [ "fullscreen" true ])
];
borderRadius = lib.hm.gvariant.mkUint32 7;
smoothing = 0.0;
enabled = true;
};
};
}