diff --git a/flake.lock b/flake.lock index 1dce679..2a265a9 100644 --- a/flake.lock +++ b/flake.lock @@ -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", diff --git a/flake.nix b/flake.nix index ea02875..c893627 100644 --- a/flake.nix +++ b/flake.nix @@ -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 diff --git a/home/gunter.nix b/home/gunter.nix index e163a65..ec5e523 100644 --- a/home/gunter.nix +++ b/home/gunter.nix @@ -31,7 +31,6 @@ ./scripts ./services/backup-home.nix ./services/ghettoptt.nix - ./services/alerttonotify.nix ./services/natstonotify.nix ./sops ./ssh diff --git a/home/services/alerttonotify.nix b/home/services/alerttonotify.nix deleted file mode 100644 index fb11fa0..0000000 --- a/home/services/alerttonotify.nix +++ /dev/null @@ -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" ]; - }; - }; -}