1
0
Fork 0

fix steam, add bluetooth service

master
Florian Schrofner 2024-01-05 13:54:42 +01:00
parent 4c25b6d461
commit 4830116cb4
2 changed files with 12 additions and 6 deletions

View File

@ -60,15 +60,14 @@
(defn- setup-system-services []
(println "setting up system services..")
;;todo
;;(fs/file ())
)
;;todo: user services
(safe-sh "ln" "-s" "/etc/sv/bluetoothd" "/var/service")
(safe-sh "usermod" "-a" "-G" "bluetooth" user))
;;todo: fetch spacemacs
;;todo: disable locking when closing lid on ac
(println "applying configuration..")
;;(setup-spacemacs)
(setup-spacemacs)
;;change shell to fish
(safe-sh "chsh" "-s" "/usr/bin/fish" user)
@ -91,4 +90,8 @@
(setup-android-scripts)
(println "set up android scripts")
(setup-system-services)
(println "set up system services")
(println "configuration applied")

View File

@ -12,9 +12,12 @@
(def home (str "/home/" user))
(safe-sh "xbps-install" "-Sy" "void-repo-nonfree")
(safe-sh "xbps-install" "-Sy" "void-repo-multilib")
(safe-sh "xbps-install" "-Sy" "void-repo-multilib-nonfree")
(safe-sh "xbps-install" "-S")
(def packages {
:base ["bluez" "chromium" "curl" "emacs-gtk3" "engrampa" "feh" "fish-shell" "firefox" "flameshot" "flatpak" "font-firacode" "gimp" "git" "htop" "intel-ucode" "i3" "i3status" "mate" "mate-power-manager" "mate-terminal" "mate-utils" "pass" "ranger" "Signal-Desktop" "steam" "thunar-archive-plugin" "unzip" "wget" "xbindkeys" "xclip" "xz"]
:base ["bluez" "chromium" "curl" "emacs-gtk3" "engrampa" "feh" "fish-shell" "firefox" "flameshot" "flatpak" "font-firacode" "gimp" "git" "htop" "intel-ucode" "i3" "i3status" "libgcc-32bit" "libstdc++-32bit" "libdrm-32bit" "libglvnd-32bit" "mate" "mate-power-manager" "mate-terminal" "mate-utils" "pass" "ranger" "Signal-Desktop" "steam" "thunar-archive-plugin" "unzip" "wget" "xbindkeys" "xclip" "xz"]
:work ["git-lfs" "kotlin-bin" "scrcpy"]
})