summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2023-07-15 02:18:45 -0400
committerJesse Luehrs <doy@tozt.net>2023-07-15 02:18:45 -0400
commitbf48297c5e9845ef83816d0578f0481f6678c390 (patch)
tree99ea14cbbe6427a174e397776b99cce58c2cbc8d
parent63ec248a26a2b40be6780f712bcdb102a7ee804a (diff)
downloadpuppet-tozt-bf48297c5e9845ef83816d0578f0481f6678c390.tar.gz
puppet-tozt-bf48297c5e9845ef83816d0578f0481f6678c390.zip
switch to starship
-rw-r--r--modules/base/manifests/tools.pp1
-rw-r--r--modules/conf/manifests/user.pp9
2 files changed, 1 insertions, 9 deletions
diff --git a/modules/base/manifests/tools.pp b/modules/base/manifests/tools.pp
index 790ffcd..ca90721 100644
--- a/modules/base/manifests/tools.pp
+++ b/modules/base/manifests/tools.pp
@@ -15,6 +15,7 @@ class base::tools {
"neomutt",
"ncdu",
"ripgrep",
+ "starship",
"strace",
"tmux",
]:
diff --git a/modules/conf/manifests/user.pp b/modules/conf/manifests/user.pp
index 689b1b2..51816ca 100644
--- a/modules/conf/manifests/user.pp
+++ b/modules/conf/manifests/user.pp
@@ -3,15 +3,6 @@ define conf::user($user=$name) {
include conf
- if $user != 'root' {
- package::cargo { "fancy-prompt for $user":
- ensure => installed,
- user => $user,
- package => 'fancy-prompt',
- require => Package["cmake"],
- }
- }
-
exec { "git clone doy/conf for $user":
command => "/usr/bin/git clone https://github.com/doy/conf",
user => $user,