Compare commits

..

No commits in common. "10866cb97c64739a19b163c4d9d3ed6dd367dcc1" and "597339129bc20a3e9143347b927824aad0c1a319" have entirely different histories.

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": [
@ -265,7 +244,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";
};
};
outputs =
@ -46,7 +42,6 @@
sops-nix,
ghettoptt,
huecli,
alerttonotify,
nix-packages,
...
}@inputs:
@ -80,7 +75,6 @@
huecli.overlays.default
nix-packages.overlays.default
nixprstatus.overlays.default
alerttonotify.overlays.default
];
in
{

View File

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

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" ];
};
};
}