89 lines
2.2 KiB
Nix
89 lines
2.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
nathan = {
|
|
services = { email = { enable = true; }; };
|
|
config = { isDesktop = true; };
|
|
programs = {
|
|
util = { wine = true; };
|
|
games = { launcher = true; };
|
|
media.nicotineService = true;
|
|
};
|
|
};
|
|
|
|
# Sway outputs
|
|
wayland.windowManager.sway.config = {
|
|
output = {
|
|
# DP-1 = {
|
|
# pos = "0 140";
|
|
# scale = "1";
|
|
# subpixel = "rgb";
|
|
# max_render_time = "6";
|
|
# };
|
|
DP-3 = { disable = ""; };
|
|
DP-1 = {
|
|
pos = "2560 0";
|
|
scale = "1.25";
|
|
subpixel = "rgb";
|
|
max_render_time = "6";
|
|
};
|
|
HDMI-A-1 = {
|
|
pos = "5632 140";
|
|
scale = "1";
|
|
subpixel = "rgb";
|
|
max_render_time = "6";
|
|
};
|
|
};
|
|
input = { "type:pointer" = { pointer_accel = "-0.3"; }; };
|
|
startup = [
|
|
# GLPaper
|
|
# { command = "glpaper DP-1 ${../../custom-files/sway/selen.frag} --fork"; }
|
|
{ command = "glpaper DP-1 ${../../custom-files/sway/selen.frag} --fork"; }
|
|
{
|
|
command =
|
|
"glpaper HDMI-A-1 ${../../custom-files/sway/selen.frag} --fork";
|
|
}
|
|
# Up the mouse dpi
|
|
{ command = "solaar config 1 dpi 4000"; }
|
|
];
|
|
};
|
|
|
|
# System specific autoruns
|
|
systemd.user.services = {
|
|
# Start up solaar in tray icon mode
|
|
solaar = {
|
|
Unit = {
|
|
Description = "Solarr";
|
|
After = [ "graphical-session.target" ];
|
|
};
|
|
Service = {
|
|
Type = "simple";
|
|
ExecStart = ''
|
|
${pkgs.solaar}/bin/solaar -w hide
|
|
'';
|
|
};
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
|
};
|
|
# Startup noisetorch on our USB mic
|
|
noisetorch-startup = {
|
|
Unit = {
|
|
Description = "noisetorch";
|
|
After = [ "graphical-session.target" ];
|
|
};
|
|
Service = {
|
|
Type = "oneshot";
|
|
ExecStart = ''
|
|
/run/wrappers/bin/noisetorch -i alsa_input.usb-18072020_JLAB_TALK_GO_MICROPHONE-00.analog-stereo
|
|
'';
|
|
};
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
|
};
|
|
};
|
|
|
|
# Mako output configuration
|
|
programs.mako = {
|
|
# Lock mako notifs to main display
|
|
output = "DP-1";
|
|
};
|
|
}
|