This commit is contained in:
DeveloperDurp 2025-05-17 14:32:25 -05:00
parent 0b91649bc5
commit f7c6016f1a
4 changed files with 24 additions and 16 deletions

View file

@ -4,8 +4,8 @@
- name: install apt - name: install apt
include_tasks: "./scripts/install_apt.yml" include_tasks: "./scripts/install_apt.yml"
- name: install brew #- name: install brew
include_tasks: "./scripts/install_brew.yml" # include_tasks: "./scripts/install_brew.yml"
#- name: install go #- name: install go
# include_tasks: "./scripts/install_go.yml" # include_tasks: "./scripts/install_go.yml"

View file

@ -1,24 +1,24 @@
install_homebrew_if_missing: true install_homebrew_if_missing: true
required_packages_brew: required_packages_brew:
- lazygit #- lazygit
- glab #- glab
- oh-my-posh - oh-my-posh
- kubernetes-cli #- kubernetes-cli
- zsh-autosuggestions - zsh-autosuggestions
- bitwarden-cli #- bitwarden-cli
- vivid #- vivid
- yazi #- yazi
- zsh-history-substring-search - zsh-history-substring-search
- opentofu #- opentofu
- helm #- helm
- bat - bat
- neovim - neovim
- eza - eza
- zoxide - zoxide
- ansible #- ansible
- ffmpeg #- ffmpeg
- k9s #- k9s
required_packages_apt: required_packages_apt:
- stow - stow

7
default.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.neovim
];
}

View file

@ -1,5 +1,6 @@
#!/bin/bash #!/bin/bash
sudo apt update nix-env -iA nixpkgs.myPackages
sudo apt install ansible -y #sudo apt update
make devpod #sudo apt install ansible -y
#make devpod
#stow --adopt . #stow --adopt .