refactor: rename home modules/general cleanup

This commit is contained in:
ooks-io 2024-01-26 13:43:14 +13:00
parent 16dd61d968
commit 653640b484
86 changed files with 230 additions and 322 deletions

View file

@ -5,7 +5,6 @@
inputs.hardware.nixosModules.lenovo-thinkpad-t480s
./hardware-configuration.nix
../../profiles
# ../../modules
];
activeProfiles = ["base" "laptop"];

View file

@ -9,13 +9,18 @@ in
hardware.brillo.enable = true;
services.clight = {
enable = true;
temperature = {
night = 1000;
day = 6000;
};
settings = {
verbose = true;
backlight.disabled = true;
dpms.timeouts = [900 300];
dimmer.timeouts = [870 270];
gamma.long_transition = true;
screen.disabled = true;
sunrise = "9:00";
sunset = "20:00";
};
};
};

View file

@ -46,9 +46,19 @@ in
hardware = {
enableAllFirmware = true;
opengl.enable = true;
opengl = {
enable = true;
extraPackages = with pkgs; [
libva
vaapiVdpau
libvdpau-va-gl
];
extraPackages32 = with pkgs.pkgsi686Linux; [
vaapiVdpau
libvdpau-va-gl
];
};
};
system.stateVersion = lib.mkDefault "23.11";
};
}

View file

@ -12,7 +12,7 @@ in
hardware = {
bluetooth.enable = true;
power.enable = true;
# backlight.enable = true;
backlight.enable = true;
};
};
};