Compare commits
2 Commits
597339129b
...
10866cb97c
Author | SHA1 | Date | |
---|---|---|---|
10866cb97c | |||
2de34d6505 |
22
flake.lock
22
flake.lock
@ -1,5 +1,26 @@
|
||||
{
|
||||
"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": [
|
||||
@ -244,6 +265,7 @@
|
||||
},
|
||||
"root": {
|
||||
"inputs": {
|
||||
"alerttonotify": "alerttonotify",
|
||||
"ghettoptt": "ghettoptt",
|
||||
"home-manager": "home-manager",
|
||||
"huecli": "huecli",
|
||||
|
@ -30,6 +30,10 @@
|
||||
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 =
|
||||
@ -42,6 +46,7 @@
|
||||
sops-nix,
|
||||
ghettoptt,
|
||||
huecli,
|
||||
alerttonotify,
|
||||
nix-packages,
|
||||
...
|
||||
}@inputs:
|
||||
@ -75,6 +80,7 @@
|
||||
huecli.overlays.default
|
||||
nix-packages.overlays.default
|
||||
nixprstatus.overlays.default
|
||||
alerttonotify.overlays.default
|
||||
];
|
||||
in
|
||||
{
|
||||
|
@ -31,6 +31,7 @@
|
||||
./scripts
|
||||
./services/backup-home.nix
|
||||
./services/ghettoptt.nix
|
||||
./services/alerttonotify.nix
|
||||
./sops
|
||||
./ssh
|
||||
./zsh
|
||||
|
15
home/services/alerttonotify.nix
Normal file
15
home/services/alerttonotify.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ pkgs, config, ... }:
|
||||
{
|
||||
systemd.user.services.alerttonotify = {
|
||||
Unit = {
|
||||
Description = "Run alerttonotify";
|
||||
};
|
||||
Service = {
|
||||
Type = "simple";
|
||||
ExecStart = "${pkgs.alerttonotify}/bin/alerttonotify";
|
||||
};
|
||||
Install = {
|
||||
WantedBy = [ "graphical-session.target" ];
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user