flocon/hosts/solaire/default.nix

50 lines
921 B
Nix
Raw Normal View History

2024-09-05 13:58:14 +00:00
{ pkgs, ... }:
2024-08-25 19:58:12 +00:00
{
imports = [
./hardware-configuration.nix
];
2024-09-06 20:08:35 +00:00
hardware.uni-sync = {
enable = true;
devices = [
{
device_id = "VID:3314/PID:41218/SN:6243168001";
sync_rgb = true;
channels = [
{
mode = "Manual";
speed = 60;
}
{
mode = "Manual";
speed = 60;
}
{
mode = "Manual";
speed = 60;
}
{
mode = "Manual";
speed = 60;
}
];
}
];
};
2024-09-09 22:55:23 +00:00
systemd.services.uni-sync = {
enable = true;
serviceConfig = {
ExecStart = "${pkgs.uni-sync}/bin/uni-sync";
};
wantedBy = ["multi-user.target"];
};
2024-09-06 01:43:59 +00:00
modules.gnome.enable = true;
modules.nvidia.enable = true;
modules.gaming.enable = true;
stylix.image = ../../wallpapers/lucy-edgerunners-wallpaper.jpg;
2024-08-25 19:58:12 +00:00
}