nixpkgs-notifier: init

This commit is contained in:
2026-06-03 14:16:53 +02:00
parent f66b4ae739
commit 5b4b92ca06
4 changed files with 49 additions and 1 deletions
+1
View File
@@ -41,6 +41,7 @@
wayland.windowManager.hyprland.settings = {
exec-once = [
"qtbatticon" # custom battery tray
"nixpkgs-notifier"
];
monitor = [
"eDP-1, highres@highrr, 0x0, 1"
+1
View File
@@ -24,6 +24,7 @@
browsers
caelestia
development
development
documentation
disk
disk-laptop
+19
View File
@@ -34,4 +34,23 @@
inputs.nixpkgs-notifier.packages.${pkgs.system}.default
];
};
flake.homeModules.development = _: {
home.file.".config/nixpkgs-notifier/config.json" = {
enable = true;
text = ''
{
"configTime": 3600,
"configFetchTime": 1,
"localNotify": true,
"matrix": {
"enable": true,
"room": "!7j-78_02dHROeLj4Ns8F12eo4IiZGv4zNsQ_1-WlyIU",
"ping": true,
"userPing": "@notificationbot_0000",
"userPingServer": "matrix.org"
}
}
'';
};
};
}