diff --git a/manifests/root.pp b/manifests/root.pp index 5345361..fddd014 100644 --- a/manifests/root.pp +++ b/manifests/root.pp @@ -39,24 +39,6 @@ node default { # apt::ppa { 'ppa:neovim-ppa/stable': } - # - # Install alacritty from deb archive is not available - # - archive { '/tmp/alacritty.deb': - ensure => present, - source => 'https://github.com/alacritty/alacritty/releases/download/v0.4.3/Alacritty-v0.4.3-ubuntu_18_04_amd64.deb', - checksum => 'f4e40511e1e1495d15e518f5bfccfff2ed69b171ff53964622c1e66bbe954000', - checksum_type => 'sha256', - } - - package { 'alacritty': - ensure => present, - provider => dpkg, - source => '/tmp/alacritty.deb', - require => [ - Archive['/tmp/alacritty.deb'] - ], - } # # Install all the packages that the workstation needs to run diff --git a/site-modules/core/manifests/terminal.pp b/site-modules/core/manifests/terminal.pp index 203b6fd..efa7c71 100644 --- a/site-modules/core/manifests/terminal.pp +++ b/site-modules/core/manifests/terminal.pp @@ -1,13 +1,4 @@ class core::terminal { - file { "${user_home}/.config/alacritty": - ensure => 'directory', - } - - file { "${user_home}/.config/alacritty/alacritty.yml": - ensure => 'link', - target => find_file('core/alacritty.yml'), - } - vcsrepo { "${user_home}/.config/base16-shell": ensure => latest, source => 'https://github.com/chriskempson/base16-shell.git',