mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 16:33: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;
|
||||
services.gammastep.enable = true;
|
||||
theme.enable = true;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
}
|
||||
];
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue