mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 18:23:54 -05:00
Aly Raffauf
6b1be071f6
* home/sway: use wayland helpers * home/sway: reorg * home/sway: simplify string interpolation * home/sway: fix faulty helpers * home/sway: consolidate secondary modules * home/sway: cleanup * home/wayland: simplify screenshooter * home/sway: better random wallpaper handling * home/sway: move display configuration to hosts * home/sway: move touch config to hosts * hosts/petalburg: add sway bindings * home/wayland/helpers: save screenshots to config.xdg.userDirs.pictures * home/wayland/helpers: enable mako dnd while slurping * nix fmt
19 lines
474 B
Nix
19 lines
474 B
Nix
{lib, ...}: {
|
|
home-manager.sharedModules = [
|
|
{
|
|
gtk.font.size = lib.mkForce 14;
|
|
home.pointerCursor.size = lib.mkForce 24;
|
|
wayland.windowManager.sway.config.output = {"LG Display 0x0569 Unknown".scale = "1.0";};
|
|
|
|
ar.home = {
|
|
desktop.hyprland.laptopMonitors = ["desc:LG Display 0x0569,preferred,auto,1.0"];
|
|
|
|
services.easyeffects = {
|
|
enable = true;
|
|
preset = "LoudnessEqualizer";
|
|
};
|
|
};
|
|
}
|
|
];
|
|
}
|