restructure home manager configs

This commit is contained in:
2025-06-24 18:47:45 +02:00
parent 6ca250dbaf
commit fe586d4a56
32 changed files with 58 additions and 58 deletions

19
modules/hm/hyprsunset.nix Normal file
View File

@ -0,0 +1,19 @@
{
services.hyprsunset = {
enable = true;
transitions = {
sunrise = {
calendar = "*-*-* 06:00:00";
requests = [
["identity"]
];
};
sunset = {
calendar = "*-*-* 20:00:00";
requests = [
["temperature" "3000"]
];
};
};
};
}