diff options
author | bd <bdunahu@colostate.edu> | 2024-01-10 19:44:21 -0700 |
---|---|---|
committer | bd <bdunahu@colostate.edu> | 2024-01-10 19:44:21 -0700 |
commit | 1ced565816120bfcc351daf9fc3a4e851162e3b7 (patch) | |
tree | 93e9c23660cd07f4dba861f334b23c03d322f48c /.config/guix/modules/bat.scm | |
parent | da5922a476cebdbbf338f0192165dbbbcd3f7b6f (diff) |
Initial commit of new repository structure
Diffstat (limited to '.config/guix/modules/bat.scm')
-rw-r--r-- | .config/guix/modules/bat.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.config/guix/modules/bat.scm b/.config/guix/modules/bat.scm new file mode 100644 index 0000000..1a56ee5 --- /dev/null +++ b/.config/guix/modules/bat.scm @@ -0,0 +1,12 @@ +(define-module (bat) + #:use-module (gnu home services) + #:use-module (gnu home services pm)) + + +(define-public bat-service + (list (service home-batsignal-service-type + (home-batsignal-configuration + (warning-level 35) + (critical-level 15) + (danger-level 5) + (notification-command "notify-send"))))) |