navos
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
JMARyA 2024-12-29 10:03:14 +01:00
parent 16a965d56c
commit 94ec42ea74
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263

View file

@ -1,8 +1,8 @@
use crate::{config::PackageConfig, install::str_vec, run_command}; use crate::{config::PackageConfig, install::str_vec, run_command};
pub const DESKTOP_PKG: [&str; 2] = ["plasma", "sddm"]; pub const DESKTOP_PKG: [&str; 3] = ["plasma", "sddm", "navos/navos"];
pub const SERVER_PKG: [&str; 1] = ["tmux"]; pub const SERVER_PKG: [&str; 2] = ["tmux", "navos/navos"];
pub fn install_pkgs(pkg: &[&str]) { pub fn install_pkgs(pkg: &[&str]) {
let mut cmd = vec!["arch-chroot", "/mnt", "pacman", "-Syu"]; let mut cmd = vec!["arch-chroot", "/mnt", "pacman", "-Syu"];