diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2023-01-10 01:04:13 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2023-01-10 01:07:18 +0100 |
commit | 77d13f8e0ef05affcba528310d0bdbab6765f9dc (patch) | |
tree | d7d90dd01f64b3262efacc278c3869e2fa06b4e5 /aisaka.org | |
parent | 406295d13964fcce827d07e893981bf94a9922f0 (diff) |
Refactor sway-service-type to sway-packages
Diffstat (limited to 'aisaka.org')
-rw-r--r-- | aisaka.org | 25 |
1 files changed, 13 insertions, 12 deletions
@@ -100,17 +100,18 @@ The Sway Window Manager consists of Sway packages and relevant configurations. #+name: sway-packages #+begin_src scheme - (define-public sway-service-type - (service-type - (name 'sway) - (extensions - `(,(service-extension home-profile-service-type - (lambda (_) - (map specification->package - '("sway" - "waybar")))))) - (description "Sway Window Manager installation.") - (default-value #f))) + (define-public sway-packages + (service + (service-type + (name 'sway-packages) + (extensions + `(,(service-extension home-profile-service-type + (lambda (_) + (map specification->package + '("sway" + "waybar")))))) + (description "Sway Window Manager installation.") + (default-value #f)))) #+end_src *** TODO Sway configuration @@ -326,6 +327,7 @@ The Sway Window Manager consists of Sway packages and relevant configurations. (services `(,ssh-configuration ,sway-configuration + ,sway-packages ,(service flashrom-service-type) ,(service home-bash-service-type (home-bash-configuration @@ -346,7 +348,6 @@ The Sway Window Manager consists of Sway packages and relevant configurations. ("system-update-" . ,system-update-))) (bash-profile `(,(local-file "bash_profile"))) (bashrc `(,(local-file "bashrc"))))) - ,(service sway-service-type) ,(simple-service 'configuration-files home-files-service-type `((".config/git/config" ,(local-file "git.config")) |