Compare commits

...

4 Commits

3 changed files with 7 additions and 11 deletions

View File

@ -20,10 +20,7 @@ next calendar event.")))
(start #~(make-timer-constructor
(calendar-event #:hours '(6) #:minutes '(0))
(lambda ()
(use-modules (ice-9 threads))
(parallel
(system "foot -He rem")
(system "mpv --shuffle ~/media/music/by-artist")))))
(spawn-shell-command "mpv --shuffle ~/media/music/by-artist"))))
(stop #~(make-timer-destructor))
(actions (list timer-trigger-action))))

View File

@ -144,7 +144,6 @@
user:root
%base-user-accounts))
#|System level packages|#
(packages
(list #|admin |# btop inetutils isc-dhcp shadow zzz
#|base |# coreutils diffutils findutils grep patch sed tar which
@ -171,6 +170,7 @@
#|Allow resolution of '.local' host names with mDNS|#
(name-service-switch %mdns-host-lookup-nss)
(essential-services
(modify-services
(operating-system-default-essential-services this-operating-system)
@ -180,8 +180,6 @@
(services (list shepherd-service:guix-gc
shepherd-service:snapshot-@home
shepherd-service:timer))))))
#|System services|#
(services
(list #|TTY services|#
(service virtual-terminal-service-type)

View File

@ -30,10 +30,11 @@ next calendar event.")))
(start #~(make-timer-constructor
(calendar-event #:days-of-month '(1 15))
(lambda ()
(let* ((btrfs "/run/current-system/profile/bin/btrfs")
(date (strftime "%Y-%m-%d" (localtime (current-time)))))
(system* btrfs "subvolume" "snapshot" "/home"
(string-append "/snapshots/home/" date))))))
(let ((btrfs "/run/current-system/profile/bin/btrfs")
(date (strftime "%Y-%m-%d" (localtime (current-time)))))
(spawn-shell-command
(string-append btrfs " subvolume snapshot"
" /home /snapshots/home/" date))))))
(stop #~(make-timer-destructor))
(actions (list timer-trigger-action))))