System/machines/levitation/home.nix

54 lines
1.2 KiB
Nix
Raw Normal View History

2022-07-02 02:44:43 -04:00
{ config, lib, pkgs, ... }:
{
nathan = {
services = { email = { enable = true; }; };
config = { isDesktop = true; };
2022-07-17 23:24:27 -04:00
programs = {
util = { wine = true; };
games = { launcher = true; };
2022-07-17 23:24:27 -04:00
};
2022-07-02 02:44:43 -04:00
};
# Sway outputs
wayland.windowManager.sway.config = {
output = {
DP-1 = {
pos = "0 140";
scale = "1";
subpixel = "rgb";
2022-11-29 10:45:41 -05:00
max_render_time = "4";
2022-07-02 02:44:43 -04:00
};
DP-3 = {
pos = "2560 0";
scale = "1.25";
subpixel = "rgb";
2022-11-29 10:45:41 -05:00
max_render_time = "4";
2022-07-02 02:44:43 -04:00
};
HDMI-A-1 = {
pos = "5632 140";
scale = "1";
subpixel = "rgb";
2022-11-29 10:45:41 -05:00
max_render_time = "4";
2022-07-02 02:44:43 -04:00
};
};
2022-11-29 10:45:41 -05:00
input = { "type:pointer" = { pointer_accel = "-0.2"; }; };
2022-07-02 02:44:43 -04:00
startup = [
# GLPaper
{ command = "glpaper DP-1 ${../../custom-files/sway/selen.frag} --fork"; }
{ command = "glpaper DP-3 ${../../custom-files/sway/selen.frag} --fork"; }
{
command =
"glpaper HDMI-A-1 ${../../custom-files/sway/selen.frag} --fork";
}
2022-11-25 22:17:56 -05:00
# Up the mouse dpi
{ command = "solaar config 1 dpi 4000"; }
2022-07-02 02:44:43 -04:00
];
};
# Mako output configuration
programs.mako = {
# Lock mako notifs to main display
output = "DP-3";
};
}