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;
services.gammastep.enable = true;
theme.enable = true;
};
}

View file

@ -2,13 +2,20 @@
home-manager = {
sharedModules = [
{
services.easyeffects = {
enable = true;
preset = "fw13-easy-effects";
};
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 @@
{
lib,
self,
...
}: {
{self, ...}: {
home-manager = {
sharedModules = [
{
@ -21,8 +17,6 @@
enable = true;
preset = "fw13-easy-effects";
};
gammastep.enable = lib.mkForce false;
};
};
}

View file

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

View file

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