mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
Added script, added jetbrain IDEs to config
This commit is contained in:
parent
046913568c
commit
50dfb2248b
2 changed files with 12 additions and 0 deletions
|
|
@ -154,6 +154,9 @@
|
|||
lm_sensors
|
||||
nautilus
|
||||
|
||||
jetbrains.rust-rover
|
||||
jetbrains.rider
|
||||
|
||||
pre-commit
|
||||
];
|
||||
|
||||
|
|
|
|||
9
private_dot_local/bin/executable_,stash_flake.sh
Normal file
9
private_dot_local/bin/executable_,stash_flake.sh
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
existing_files=()
|
||||
for file in flake.nix flake.lock .envrc; do
|
||||
[[ -f $file ]] && existing_files+=("$file")
|
||||
done
|
||||
|
||||
git add "$existing_files"
|
||||
git stash push -m "nix flake files" -- "$existing_files"
|
||||
Loading…
Add table
Add a link
Reference in a new issue