System/machines/productivity-vm/home.nix

40 lines
718 B
Nix
Raw Normal View History

2023-04-25 23:39:37 -04:00
{ config, lib, pkgs, ... }:
{
nathan = {
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
};
};
home.packages = with pkgs; [ gammastep ];
2023-06-18 16:39:16 -04:00
# Hyprland outputs + tweaks
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
};
}