mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-06-20 19:27:03 -04: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
|
spotify
|
||||||
vscodium
|
vscodium
|
||||||
vesktop
|
vesktop
|
||||||
|
discord
|
||||||
# uns.vesktop
|
# uns.vesktop
|
||||||
kitty
|
kitty
|
||||||
rofi
|
rofi
|
||||||
|
@ -91,6 +92,19 @@ jdk19
|
||||||
# (pkgs.writeShellScriptBin "my-hello" ''
|
# (pkgs.writeShellScriptBin "my-hello" ''
|
||||||
# echo "Hello, ${config.home.username}!"
|
# 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
|
# Home Manager is pretty good at managing dotfiles. The primary way to manage
|
||||||
# plain files is through 'home.file'.
|
# plain files is through 'home.file'.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue