mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 00:53:55 -05:00
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
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:
parent
84e27e68a0
commit
56957f2f15
|
@ -73,7 +73,6 @@ self: {pkgs, ...}: {
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultApps.enable = true;
|
defaultApps.enable = true;
|
||||||
services.gammastep.enable = true;
|
|
||||||
theme.enable = true;
|
theme.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -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;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue