49 lines
1.0 KiB
Nix
49 lines
1.0 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
nathan = {
|
|
# services = { email = { enable = true; }; };
|
|
config = { isDesktop = true; };
|
|
programs = {
|
|
media.enable = false;
|
|
util = {
|
|
wine = true;
|
|
git = {
|
|
gpgSign = false;
|
|
sshSign = true;
|
|
};
|
|
};
|
|
# games = { launcher = true; };
|
|
# media.nicotineService = true;
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [ gammastep ];
|
|
|
|
# Sway outputs
|
|
home.sessionVariables = {
|
|
"WLR_NO_HARDWARE_CURSORS" = "1";
|
|
"WLR_RENDERER" = "pixman";
|
|
"WLR_RENDER_DRM_DEVICE" = "/dev/dri/renderD128";
|
|
"WLR_RENDERER_ALLOW_SOFTWARE" = "1";
|
|
};
|
|
|
|
wayland.windowManager.hyprland.extraConfig = ''
|
|
monitor=Virtual-1,preferred,auto,1.5
|
|
input {
|
|
# sensitivity = -0.8
|
|
# accel_profile = flat
|
|
}
|
|
exec-once=hyprpaper
|
|
'';
|
|
|
|
# System specific autoruns
|
|
systemd.user.services = { };
|
|
|
|
# Mako output configuration
|
|
services.mako = {
|
|
# Lock mako notifs to main display
|
|
output = "Virtual-1";
|
|
};
|
|
}
|