Remove alerttonotify
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m40s
Periodic flake update / flake-update (push) Successful in 21m25s

This commit is contained in:
Torjus Håkestad 2025-02-11 22:11:59 +01:00
parent 6d4f3cad3b
commit 82d3a3d8e8
Signed by: torjus
SSH Key Fingerprint: SHA256:KjAds8wHfD2mBYK2H815s/+ABcSdcIHUndwHEdSxml4
4 changed files with 0 additions and 44 deletions

View File

@ -1,26 +1,5 @@
{
"nodes": {
"alerttonotify": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1733205085,
"narHash": "sha256-W+GqdY5EQ6AY5//TIc1QCTF5Fs4DmvF7IyR+V1GEOrA=",
"ref": "master",
"rev": "d941260e388f1d790bc45f37788e2216605b105f",
"revCount": 4,
"type": "git",
"url": "https://git.t-juice.club/torjus/alerttonotify"
},
"original": {
"ref": "master",
"type": "git",
"url": "https://git.t-juice.club/torjus/alerttonotify"
}
},
"ghettoptt": {
"inputs": {
"nixpkgs": [
@ -286,7 +265,6 @@
},
"root": {
"inputs": {
"alerttonotify": "alerttonotify",
"ghettoptt": "ghettoptt",
"home-manager": "home-manager",
"huecli": "huecli",

View File

@ -30,10 +30,6 @@
url = "git+https://git.t-juice.club/torjus/nixprstatus?ref=master";
inputs.nixpkgs.follows = "nixpkgs";
};
alerttonotify = {
url = "git+https://git.t-juice.club/torjus/alerttonotify?ref=master";
inputs.nixpkgs.follows = "nixpkgs";
};
natstonotify = {
url = "git+https://git.t-juice.club/torjus/natstonotify?ref=master";
inputs.nixpkgs.follows = "nixpkgs";
@ -50,7 +46,6 @@
sops-nix,
ghettoptt,
huecli,
alerttonotify,
natstonotify,
nix-packages,
...
@ -85,7 +80,6 @@
huecli.overlays.default
nix-packages.overlays.default
nixprstatus.overlays.default
alerttonotify.overlays.default
natstonotify.overlays.default
];
in

View File

@ -31,7 +31,6 @@
./scripts
./services/backup-home.nix
./services/ghettoptt.nix
./services/alerttonotify.nix
./services/natstonotify.nix
./sops
./ssh

View File

@ -1,15 +0,0 @@
{ pkgs, config, ... }:
{
systemd.user.services.alerttonotify = {
Unit = {
Description = "Run alerttonotify";
};
Service = {
Type = "simple";
ExecStart = "${pkgs.alerttonotify}/bin/alerttonotify";
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
};
}