mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
87 current 2024-04-26 21:29:33 24.05.20240419.5c24cf2 6.6.28 *
This commit is contained in:
parent
bfc422019f
commit
0650a4149f
1 changed files with 14 additions and 0 deletions
|
@ -71,6 +71,7 @@ jdk19
|
|||
spotify
|
||||
vscodium
|
||||
vesktop
|
||||
discord
|
||||
# uns.vesktop
|
||||
kitty
|
||||
rofi
|
||||
|
@ -91,6 +92,19 @@ jdk19
|
|||
# (pkgs.writeShellScriptBin "my-hello" ''
|
||||
# echo "Hello, ${config.home.username}!"
|
||||
# '')
|
||||
(pkgs.writeShellScriptBin "installVencord" ''
|
||||
set -e
|
||||
set -x
|
||||
out=$(mktemp)
|
||||
trap 'rm -f "$out"' EXIT
|
||||
curl -sS https://github.com/Vendicated/VencordInstaller/releases/latest/download/VencordInstallerCli-Linux \
|
||||
--output "$out" \
|
||||
--location
|
||||
|
||||
chmod +x "$out"
|
||||
|
||||
sudo $out -location "${pkgs.discord}/opt/discord"
|
||||
'')
|
||||
];
|
||||
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
||||
# plain files is through 'home.file'.
|
||||
|
|
Loading…
Reference in a new issue