System/machines/productivity-vm/home.nix

40 lines
711 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 = ''
2023-06-18 19:10:10 -04:00
monitor=,2560x1440,auto,1.5
2023-06-18 04:25:53 -04:00
input {
# sensitivity = -0.8
# accel_profile = flat
}
2023-06-19 03:28:10 -04:00
# exec-once=hyprpaper
2023-06-18 04:25:53 -04:00
'';
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
};
}