Initial commit
This commit is contained in:
commit
b79d352847
37 changed files with 2191 additions and 0 deletions
47
home/low-battery-notify/default.nix
Normal file
47
home/low-battery-notify/default.nix
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
{
|
||||
options = {
|
||||
custom.low-battery-notify.enable = lib.mkEnableOption "Enable low battery notification";
|
||||
};
|
||||
config = lib.mkIf config.custom.low-battery-notify.enable {
|
||||
home.packages = with pkgs; [
|
||||
python3
|
||||
];
|
||||
systemd.user = {
|
||||
services = {
|
||||
low-battery-notify = {
|
||||
Unit = {
|
||||
Description = "Low battery notify";
|
||||
};
|
||||
|
||||
Service = {
|
||||
Type = "oneshot";
|
||||
ExecStart = "/home/flygrounder/.local/share/scripts/low-battery-notify.py";
|
||||
};
|
||||
};
|
||||
};
|
||||
timers = {
|
||||
low-battery-notify = {
|
||||
Unit = {
|
||||
Description = "test";
|
||||
};
|
||||
|
||||
Timer = {
|
||||
OnUnitActiveSec = "10m";
|
||||
OnBootSec = "10m";
|
||||
};
|
||||
|
||||
Install = {
|
||||
WantedBy = [ "timers.target" ];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
xdg.dataFile = {
|
||||
low-battery-notify = {
|
||||
source = ./script.py;
|
||||
target = "scripts/low-battery-notify.py";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue