This commit is contained in:
Nathan McCarty 2023-04-26 00:17:33 -04:00
parent 632af31557
commit 2bd7d7d080
No known key found for this signature in database
2 changed files with 12 additions and 10 deletions

View File

@ -28,6 +28,8 @@
device = "/dev/sda";
useOSProber = true;
};
virtualisation.vmware.guest.enable = true;
environment.variables = { "WLR_NO_HARDWARE_CURSORS" = "1"; };
# Setup system configuration
nathan = {
programs = { games = false; };

View File

@ -17,13 +17,13 @@
# Sway outputs
wayland.windowManager.sway.config = {
output = {
# DP-1 = {
# scale = "1.25";
# subpixel = "rgb";
# max_render_time = "6";
# adaptive_sync = "on";
# render_bit_depth = "10";
# };
Virtual-1 = {
scale = "1.25";
subpixel = "rgb";
# max_render_time = "6";
# adaptive_sync = "on";
# render_bit_depth = "10";
};
};
input = { "type:pointer" = { pointer_accel = "-0.3"; }; };
startup = [ ];
@ -35,13 +35,13 @@
# disconnecting input)
systemd.user.services.glpaper-dp1 = {
Unit = {
Description = "glpaper (DP-1)";
Description = "glpaper (Virtual-1)";
After = [ "graphical-session.target" ];
};
Service = {
Type = "simple";
ExecStart = ''
/etc/profiles/per-user/nathan/bin/glpaper DP-1 ${
/etc/profiles/per-user/nathan/bin/glpaper Virtual-1 ${
../../custom-files/sway/selen.frag
}
'';
@ -56,6 +56,6 @@
# Mako output configuration
programs.mako = {
# Lock mako notifs to main display
output = "DP-1";
output = "Virtual-1";
};
}