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"; device = "/dev/sda";
useOSProber = true; useOSProber = true;
}; };
virtualisation.vmware.guest.enable = true;
environment.variables = { "WLR_NO_HARDWARE_CURSORS" = "1"; };
# Setup system configuration # Setup system configuration
nathan = { nathan = {
programs = { games = false; }; programs = { games = false; };

View File

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