18 lines
394 B
Nix
18 lines
394 B
Nix
{ ... }:
|
|
{
|
|
xdg.configFile."amethyst/amethyst.yml".text = ''
|
|
window-margins: true
|
|
window-margin-size: 10
|
|
mouse-swaps-windows: true
|
|
mouse-resizes-windows: true
|
|
floating-is-blacklist: true
|
|
float-small-windows: true
|
|
floating:
|
|
- com.apple.iphonesimulator
|
|
- com.apple.systempreferences
|
|
layouts:
|
|
- tall
|
|
- fullscreen
|
|
- floating
|
|
'';
|
|
}
|