2023-04-25 23:39:37 -04:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
nathan = {
|
|
|
|
# services = { email = { enable = true; }; };
|
|
|
|
config = { isDesktop = true; };
|
|
|
|
programs = {
|
|
|
|
media.enable = false;
|
2023-04-26 05:40:56 -04:00
|
|
|
util = {
|
|
|
|
wine = true;
|
|
|
|
git = {
|
|
|
|
gpgSign = false;
|
|
|
|
sshSign = true;
|
|
|
|
};
|
2023-04-26 01:24:42 -04:00
|
|
|
};
|
2023-04-25 23:39:37 -04:00
|
|
|
# games = { launcher = true; };
|
|
|
|
# media.nicotineService = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
home.packages = with pkgs; [ gammastep ];
|
|
|
|
|
|
|
|
# Sway outputs
|
2023-04-26 02:59:02 -04:00
|
|
|
home.sessionVariables = {
|
|
|
|
"WLR_NO_HARDWARE_CURSORS" = "1";
|
2023-06-18 04:57:39 -04:00
|
|
|
"WLR_RENDERER" = "pixman";
|
2023-04-26 02:59:02 -04:00
|
|
|
"WLR_RENDER_DRM_DEVICE" = "/dev/dri/renderD128";
|
2023-06-18 04:25:53 -04:00
|
|
|
"WLR_RENDERER_ALLOW_SOFTWARE" = "1";
|
2023-04-26 02:59:02 -04:00
|
|
|
};
|
2023-04-25 23:39:37 -04:00
|
|
|
|
2023-06-18 04:25:53 -04:00
|
|
|
wayland.windowManager.hyprland.extraConfig = ''
|
|
|
|
monitor=Virtual-1,preferred,auto,1.5
|
|
|
|
input {
|
|
|
|
# sensitivity = -0.8
|
|
|
|
# accel_profile = flat
|
|
|
|
}
|
|
|
|
exec-once=hyprpaper
|
|
|
|
'';
|
2023-04-25 23:39:37 -04:00
|
|
|
|
|
|
|
# System specific autoruns
|
|
|
|
systemd.user.services = { };
|
|
|
|
|
|
|
|
# Mako output configuration
|
2023-05-30 09:18:20 -04:00
|
|
|
services.mako = {
|
2023-04-25 23:39:37 -04:00
|
|
|
# Lock mako notifs to main display
|
2023-04-26 00:17:33 -04:00
|
|
|
output = "Virtual-1";
|
2023-04-25 23:39:37 -04:00
|
|
|
};
|
|
|
|
}
|