home: move gammastep settings to hosts
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run

This commit is contained in:
Aly Raffauf 2024-09-28 19:58:05 -04:00
parent 84e27e68a0
commit 56957f2f15
5 changed files with 30 additions and 22 deletions

View file

@ -73,7 +73,6 @@ self: {pkgs, ...}: {
}; };
defaultApps.enable = true; defaultApps.enable = true;
services.gammastep.enable = true;
theme.enable = true; theme.enable = true;
}; };
} }

View file

@ -2,13 +2,20 @@
home-manager = { home-manager = {
sharedModules = [ sharedModules = [
{ {
services.easyeffects = {
enable = true;
preset = "fw13-easy-effects";
};
wayland.windowManager.sway.config.output = {"BOE 0x095F Unknown".scale = "1.5";}; wayland.windowManager.sway.config.output = {"BOE 0x095F Unknown".scale = "1.5";};
ar.home.desktop.hyprland.laptopMonitors = ["desc:BOE 0x095F,preferred,auto,1.566667"];
ar.home = {
desktop.hyprland.laptopMonitors = ["desc:BOE 0x095F,preferred,auto,1.566667"];
services = {
easyeffects = {
enable = true;
preset = "fw13-easy-effects";
};
gammastep.enable = true;
};
};
} }
]; ];

View file

@ -1,8 +1,4 @@
{ {self, ...}: {
lib,
self,
...
}: {
home-manager = { home-manager = {
sharedModules = [ sharedModules = [
{ {
@ -21,8 +17,6 @@
enable = true; enable = true;
preset = "fw13-easy-effects"; preset = "fw13-easy-effects";
}; };
gammastep.enable = lib.mkForce false;
}; };
}; };
} }

View file

@ -42,13 +42,17 @@
}; };
}; };
ar.home.desktop.hyprland = { ar.home = {
laptopMonitors = ["desc:Samsung Display Corp. 0x4152,preferred,auto,2,transform,0"]; desktop.hyprland = {
laptopMonitors = ["desc:Samsung Display Corp. 0x4152,preferred,auto,2,transform,0"];
tabletMode = { tabletMode = {
enable = true; enable = true;
switches = ["Lenovo Yoga Tablet Mode Control switch"]; switches = ["Lenovo Yoga Tablet Mode Control switch"];
};
}; };
services.gammastep.enable = true;
}; };
} }
]; ];

View file

@ -7,9 +7,13 @@
ar.home = { ar.home = {
desktop.hyprland.laptopMonitors = ["desc:LG Display 0x0569,preferred,auto,1.25"]; desktop.hyprland.laptopMonitors = ["desc:LG Display 0x0569,preferred,auto,1.25"];
services.easyeffects = { services = {
enable = true; easyeffects = {
preset = "LoudnessEqualizer"; enable = true;
preset = "LoudnessEqualizer";
};
gammastep.enable = true;
}; };
}; };
} }